ngc 1.5.0
 
Loading...
Searching...
No Matches
app.hpp
Go to the documentation of this file.
1
10#ifndef NGC_GATEWAY_DDT_APP_H_
11#define NGC_GATEWAY_DDT_APP_H_
12
15
16namespace ngc::gateway::ddt {
17
25 public:
27 App();
28
33 explicit App(ngcdttPUBLISH *publisher);
34
36 virtual ~App();
37
39 App(App&) = delete;
40 App(App&&) = delete;
41 App& operator=(App&) = delete;
42
43 protected:
44 private:
45 };
46}
47
48#endif /* NGC_GATEWAY_DTT_APP_H_ */
49
NGC/NGCII data gateway application base class.
NGC/NGCII data gateway application base class.
Definition app.hpp:25
App & operator=(App &)=delete
virtual ~App()
Destructor.
Definition app.cpp:23
App(App &&)=delete
App(App &)=delete
Disables unused constructors and operators.
App()
Constructor.
Definition app.cpp:15
Definition ngcdttPUBLISH.hpp:737
ngcdttPUBLISH * publisher
Publisher object.
Definition ngcdtt.hpp:234
Definition app.cpp:13
NGC/NGCII gateway publisher class for DDT.