Files
Archimedes/modules/Print/src/print.cpp
2025-03-15 18:57:04 -05:00

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);
}