DEADSOFTWARE

Split up fold
[odcread.git] / fold / view.cc
1 #include "fold/module.ih"
3 namespace odc {
5 const std::string View::TYPENAME("Views.View^");
6 const TypeProxy<View, Store> View::PROXY;
8 View::View(INTEGER id) : Store(id) {}
10 const std::string &View::getTypeName() const {
11 return TYPENAME;
12 }
14 void View::internalize(Reader &reader) {
15 Store::internalize(reader);
16 if (reader.isCancelled()) return;
17 reader.readVersion(0, 0);
18 }
20 } // namespace odc