22 lines
423 B
C++
22 lines
423 B
C++
#include "Archimedes.h"
|
|
|
|
class DependsOnPrintStatic : public Archimedes::Module {
|
|
|
|
public:
|
|
DependsOnPrintStatic(void*, Archimedes::App*);
|
|
~DependsOnPrintStatic();
|
|
void run();
|
|
void onLoad() {}
|
|
|
|
};
|
|
|
|
#ifndef DEPENDSONPRINTSTATIC_STATIC
|
|
|
|
extern "C" {
|
|
Archimedes::Module* create(void* handle, Archimedes::App* app) {
|
|
return new DependsOnPrintStatic(handle, app);
|
|
}
|
|
}
|
|
|
|
#endif
|