#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