Last change
on this file since 11751 was
11012,
checked in by landauf, 9 years ago
|
added unittest for plugin loading and unloading
|
-
Property svn:eol-style set to
native
|
File size:
385 bytes
|
Rev | Line | |
---|
[11012] | 1 | #ifndef _Testclass_H__ |
---|
| 2 | #define _Testclass_H__ |
---|
| 3 | |
---|
| 4 | #include "core/class/OrxonoxClass.h" |
---|
| 5 | |
---|
| 6 | namespace orxonox |
---|
| 7 | { |
---|
| 8 | class Testclass : public OrxonoxClass |
---|
| 9 | { |
---|
| 10 | public: |
---|
| 11 | Testclass(); |
---|
| 12 | void setConfigValues(); |
---|
| 13 | |
---|
| 14 | int getValue() const |
---|
| 15 | { return this->value_; } |
---|
| 16 | |
---|
| 17 | private: |
---|
| 18 | int value_; |
---|
| 19 | }; |
---|
| 20 | } |
---|
| 21 | |
---|
| 22 | #endif /* _Testclass_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.