init repo

This commit is contained in:
Tristan Krause 2019-03-26 09:57:01 +01:00
commit a68bb3aecc
8 changed files with 79 additions and 0 deletions

18
drv/b15f.h Normal file
View file

@ -0,0 +1,18 @@
#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