b15f/main.cpp

10 lines
144 B
C++
Raw Normal View History

2019-03-26 08:57:01 +00:00
#include <iostream>
#include "drv/b15f.h"
int main()
{
B15F& drv = B15F::getInstance();
drv.init();
2019-03-26 10:35:20 +00:00
std::cout << "Schluss." << std::endl;
2019-03-26 08:57:01 +00:00
}