blob: ee36477d1df34ab17898f205f5105d5294b5fb56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef INTERFACE_PLUGGER_H
#define INETRFACE_PLUGGER_H
#include <bu/singleton.h>
#include <bu/plugger.h>
#include "interface.h"
class InterfacePlugger : public Bu::Singleton<InterfacePlugger>,
public Bu::Plugger<Interface>
{
friend class Bu::Singleton<InterfacePlugger>;
private:
InterfacePlugger();
virtual ~InterfacePlugger();
public:
};
#endif
|