Turn Wrapper to singleton

This commit is contained in:
2023-10-30 11:31:11 +01:00
parent 6277f5f2f9
commit 5258e90bae
10 changed files with 249 additions and 92 deletions

16
src/STree.h Normal file
View 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 */