'Classic' CCA c++ binding (ccaffeine-only) 0.5.7
GoPort.h
1#ifndef __GOPORT_H__
2#define __GOPORT_H__
3
4
5namespace classic {
6
7namespace gov {
8 namespace cca {
9
13class GoPort : public virtual Port {
14
15public:
16
18 virtual ~GoPort(){}
19
29 virtual int go() CLASSIC_CCA_PURE;
30};
31
32
33 } ENDSEMI
34} ENDSEMI
35 } ENDSEMI // end namespace classic
36
37
38#endif //__GOPORT_H__
UNADOPTED Standard: A just-do-it port.
Definition GoPort.h:13
virtual int go() CLASSIC_CCA_PURE
Make the component do its thing.
virtual ~GoPort()
obligatory vdtor
Definition GoPort.h:18
A tag interface to identify an interface capable of being exported to or imported from a CCA componen...
Definition cca.h:92
To deal with babel taking over this same namespace we name this one "classic.
Definition SimpleStamper.h:7