DEADSOFTWARE

Split up fold
[odcread.git] / fold / fold.cc
1 #include "fold/module.ih"
3 namespace odc {
5 const std::string Fold::TYPENAME("StdFolds.Fold^");
6 const TypeProxy<Fold, View> Fold::PROXY;
8 Fold::Fold(INTEGER id) : View(id) {}
10 Fold::~Fold() {
11 if (d_hidden != 0) {
12 delete d_hidden;
13 }
14 delete d_label;
15 }
17 const std::string &Fold::getTypeName() const {
18 return TYPENAME;
19 }
21 } // namespace odc