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