15 lines
246 B
C++
15 lines
246 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);
|
|
}
|