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