source: trunk/ETSI-Testsuites/ETSI_auto_IOT/adapter/src/Dispatcher/UdpDispatcher.h @ 22

Last change on this file since 22 was 22, checked in by rings, 14 years ago
  • Property svn:executable set to *
File size: 329 bytes
Line 
1#ifndef UDP_DISPATCHER_H
2#define UDP_DISPATCHER_H
3
4#include "Helper/Singleton.h"
5#include "Dispatcher.h"
6
7class UdpDispatcher : public Dispatcher, public Singleton<UdpDispatcher> {
8 
9 protected:
10  //Singleton
11  UdpDispatcher();
12 
13  //Singleton
14  friend class Singleton<UdpDispatcher>;
15
16 public:
17  ~UdpDispatcher();
18
19};
20
21#endif
Note: See TracBrowser for help on using the repository browser.