init repo
This commit is contained in:
commit
a68bb3aecc
8 changed files with 79 additions and 0 deletions
18
drv/b15f.h
Normal file
18
drv/b15f.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue