19 lines
493 B
C++
19 lines
493 B
C++
#include "DependsOnPrintStatic.h"
|
|
|
|
#include "modules/examples/Modules/Print/src/Print.h"
|
|
|
|
DependsOnPrintStatic::DependsOnPrintStatic(void* h, Archimedes::App* a) : Module(h, a) {
|
|
name = "DependsOnPrintStatic";
|
|
|
|
deps["Print"] = new Print(nullptr, a);
|
|
}
|
|
|
|
DependsOnPrintStatic::~DependsOnPrintStatic() {
|
|
std::cout << "DependsOnPrintStatic Destroyed!\n";
|
|
}
|
|
|
|
void DependsOnPrintStatic::run() {
|
|
std::cout << "DependsOnPrintStatic lib loaded and run!\n";
|
|
app->stopModule(name);
|
|
}
|