-
Notifications
You must be signed in to change notification settings - Fork 1
/
CreateFilter.h
53 lines (40 loc) · 1.11 KB
/
CreateFilter.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
53
/*******************************************************************
*
* DESCRIPTION: Atomic Model Create Filter
*
* AUTHOR: Waqas Muhi
*
*
* DATE: 29/10/2011
*
*******************************************************************/
#ifndef __CREATEFILTER_H
#define __CREATEFILTER_H
/** include files **/
#include "atomic.h" // class Atomic
/** forward declarations **/
class Distribution ;
/** declarations **/
class CreateFilter: public Atomic
{
public:
CreateFilter( const string &name = "CreateFilter" ) ; // Default constructor
~CreateFilter(); // Destructor
virtual string className() const
{return "CreateFilter";}
protected:
Model &initFunction();
Model &externalFunction( const ExternalMessage & );
Model &internalFunction( const InternalMessage & );
Model &outputFunction( const InternalMessage & );
private:
Port &filter_go;
Port &filter_done;
Port &filter_out;
int start_create, finish_create;
double filter_code;
Distribution *dist;
Distribution &distribution()
{return *dist;}
}; // class CreateFilter
#endif //__CREATEFILTER_H