b15f/drv/b15f.h
Tristan Krause a68bb3aecc init repo
2019-03-26 09:57:01 +01:00

19 lines
225 B
C++

#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