Turn Wrapper to singleton
This commit is contained in:
16
src/STree.h
Normal file
16
src/STree.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef STREE_H
|
||||
#define STREE_H
|
||||
#include "PyClassifier.h"
|
||||
|
||||
namespace pywrap {
|
||||
class STree : public PyClassifier {
|
||||
public:
|
||||
STree() : PyClassifier("stree", "Stree") {};
|
||||
~STree() = default;
|
||||
void version();
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
} /* namespace pywrap */
|
||||
#endif /* STREE_H */
|
Reference in New Issue
Block a user