b15f/drv/b15f.h

19 lines
225 B
C
Raw Normal View History

2019-03-26 08:57:01 +00:00
#ifndef B15F_h
#define B15F_h
#include <iostream>
class B15F
{
private:
B15F(void); // privater Konstruktor
public:
void init(void);
static B15F& getInstance(void);
private:
static B15F* instance;
};
#endif // B15F_h