ngc 1.4.0
 
Loading...
Searching...
No Matches
app.hpp
Go to the documentation of this file.
1
9#ifndef NGC_GATEWAY_DDT_APP_H_
10#define NGC_GATEWAY_DDT_APP_H_
11
14
15namespace ngc::gateway::ddt {
16
24 public:
26 App();
27
32 explicit App(ngcdttPUBLISH *publisher);
33
35 virtual ~App();
36
38 App(App&) = delete;
39 App(App&&) = delete;
40 App& operator=(App&) = delete;
41
42 protected:
43 private:
44 };
45}
46
47#endif /* NGC_GATEWAY_DTT_APP_H_ */
48
NGC/NGCII data gateway application base class.
NGC/NGCII data gateway application base class.
Definition app.hpp:24
App & operator=(App &)=delete
virtual ~App()
Destructor.
Definition app.cpp:22
App(App &&)=delete
App(App &)=delete
Disables unused constructors and operators.
App()
Constructor.
Definition app.cpp:14
Definition ngcdttPUBLISH.hpp:736
ngcdttPUBLISH * publisher
Publisher object.
Definition ngcdtt.hpp:233
Definition app.cpp:12
NGC/NGCII gateway publisher class for DDT.