17 lines
403 B
C++
17 lines
403 B
C++
#include "DependsOnPrint.h"
|
|
|
|
DependsOnPrint::DependsOnPrint(void* h, App& a) : Module(h, a) {
|
|
name = "DependsOnPrint";
|
|
|
|
deps["Print"] = "/home/nathan/Projects/Archimedes/result-2/bin/Print";
|
|
}
|
|
|
|
DependsOnPrint::~DependsOnPrint() {
|
|
std::cout << "DependsOnPrint Destroyed!\n";
|
|
}
|
|
|
|
void DependsOnPrint::run() {
|
|
std::cout << "DependsOnPrint lib loaded and run!\n";
|
|
app.stopModule(self);
|
|
}
|