13 lines
292 B
C++
13 lines
292 B
C++
#ifndef STREE_H
|
|
#define STREE_H
|
|
#include "PyClassifier.h"
|
|
|
|
namespace pywrap {
|
|
class STree : public PyClassifier {
|
|
public:
|
|
STree() : PyClassifier("stree", "Stree") {};
|
|
~STree() = default;
|
|
std::string graph();
|
|
};
|
|
} /* namespace pywrap */
|
|
#endif /* STREE_H */ |