b15f/drv/b15f.cpp

21 lines
229 B
C++
Raw Normal View History

2019-03-26 08:57:01 +00:00
#include "b15f.h"
B15F* B15F::instance = nullptr;
B15F::B15F()
{
}
void B15F::init(void)
{
std::cout << "moint: " << std::endl;
}
B15F& B15F::getInstance(void)
{
if(!instance)
instance = new B15F();
return *instance;
}