source:
trunk/ETSI-Testsuites/ETSI_auto_IOT/adapter/src/Dispatcher/IpDispatcher.h
Last change on this file was 22, checked in by rings, 14 years ago | |
---|---|
|
|
File size: 322 bytes |
Line | |
---|---|
1 | #ifndef IP_DISPATCHER_H |
2 | #define IP_DISPATCHER_H |
3 | |
4 | #include "Helper/Singleton.h" |
5 | #include "Dispatcher.h" |
6 | |
7 | class IpDispatcher : public Dispatcher, public Singleton<IpDispatcher> { |
8 | |
9 | protected: |
10 | //Singleton |
11 | IpDispatcher(); |
12 | |
13 | //Singleton |
14 | friend class Singleton<IpDispatcher>; |
15 | |
16 | public: |
17 | ~IpDispatcher(); |
18 | |
19 | }; |
20 | |
21 | #endif |
Note: See TracBrowser
for help on using the repository browser.