source: trunk/ETSI-Testsuites/ETSI_auto_IOT/adapter/src/Dispatcher/EthernetDispatcher.h @ 53

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