17 lines
309 B
C++
17 lines
309 B
C++
#include "print.h"
|
|
|
|
Print::Print(void* h, App& a) : Module(h, a) {
|
|
name = "Print";
|
|
}
|
|
|
|
Print::~Print() {
|
|
std::cout << "Print Destroyed!\n";
|
|
}
|
|
|
|
void Print::run() {
|
|
std::cout << "Print lib loaded and run!\n";
|
|
app.stopModule(self);
|
|
//app.end();
|
|
std::cout << "app.stopModule() called\n";
|
|
}
|