-
Notifications
You must be signed in to change notification settings - Fork 1
/
StartCapture.h
52 lines (39 loc) · 1.11 KB
/
StartCapture.h
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
47
48
49
50
51
52
/*******************************************************************
*
* DESCRIPTION: Atomic Model Start Capture
*
* AUTHOR: Waqas Muhi
*
*
* DATE: 29/10/2011
*
*******************************************************************/
#ifndef __STARTCAPTURE_H
#define __STARTCAPTURE_H
/** include files **/
#include "atomic.h" // class Atomic
/** forward declarations **/
class Distribution ;
/** declarations **/
class StartCapture: public Atomic
{
public:
StartCapture( const string &name = "StartCapture" ) ; // Default constructor
~StartCapture(); // Destructor
virtual string className() const
{return "StartCapture";}
protected:
Model &initFunction();
Model &externalFunction( const ExternalMessage & );
Model &internalFunction( const InternalMessage & );
Model &outputFunction( const InternalMessage & );
private:
Port &cmd_in;
const Port &channel_done;
Port &capture_started, &channel_go;
int wait_for_cmd, set_channel, process_cmd;
Distribution *dist;
Distribution &distribution()
{return *dist;}
}; // class
#endif //__STARTCAPTURE_H