-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtupleclient.h
More file actions
46 lines (34 loc) · 945 Bytes
/
tupleclient.h
File metadata and controls
46 lines (34 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*******************************************************************
*
* DESCRIPTION: class TupleClient
*
* AUTHOR: Umar Farooq
*
* EMAIL: ufarooq@sce.carleton.ca
*
* DATE: 17/10/2003
*
*******************************************************************/
#ifndef __TUPLECLIENT_H
#define __TUPLECLIENT_H
/** include files **/
#include "atomic.h" // class Atomic
/** declarations **/
class Tupleclient: public Atomic
{
public:
Tupleclient( const string &name = "Tupleclient" ) ; // Default constructor
virtual string className() const
{return "Tupleclient";}
protected:
Model &initFunction();
Model &externalFunction( const ExternalMessage & );
Model &internalFunction( const InternalMessage & );
Model &outputFunction( const InternalMessage & );
private:
const Port &inCObject ;
Port &outCObject ;
int oid ;
Time writeTime;
}; // class CPU
#endif //__TUPLECLIENT_H