test static dependencies
This commit is contained in:
17
modules/DependsOnPrintStatic/src/DependsOnPrintStatic.h
Normal file
17
modules/DependsOnPrintStatic/src/DependsOnPrintStatic.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "Archimedes.h"
|
||||
|
||||
class DependsOnPrintStatic : public Archimedes::Module {
|
||||
|
||||
public:
|
||||
DependsOnPrintStatic(void*, Archimedes::App*);
|
||||
~DependsOnPrintStatic();
|
||||
void run();
|
||||
void onLoad() {}
|
||||
|
||||
};
|
||||
|
||||
extern "C" {
|
||||
Archimedes::Module* create(void* handle, Archimedes::App* app) {
|
||||
return new DependsOnPrintStatic(handle, app);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user