Files
Archimedes/modules/examples/Print/src/Print.cpp
2025-04-17 14:58:22 -05:00

18 lines
296 B
C++

#include "Print.h"
Print::Print(Archimedes::App* a, void* h) : Archimedes::Module(a, h) {
name = "Print";
}
Print::~Print() {
if(app) {
std::cout << "Print Destroyed!\n";
}
}
void Print::run() {
std::cout << "Print lib loaded and run!\n";
app->stopModule(name);
}