X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=sidebyside;f=store%2Fstore.cc;h=69ca4f8c2bb1586a32c3d794a776af8a5b7ac36d;hb=HEAD;hp=a967518550e594006e06d24ded0ebbe16157605c;hpb=cf88fc04686af2b4a34f9ccebc9f517cd83be491;p=odcread.git diff --git a/store/store.cc b/store/store.cc index a967518..69ca4f8 100644 --- a/store/store.cc +++ b/store/store.cc @@ -1,4 +1,4 @@ -#include "store/store.ih" +#include "store/module.ih" namespace odc { @@ -39,49 +39,4 @@ std::string Store::toString() { void Store::accept(Visitor &visitor) const {} -const std::string Elem::TYPENAME("Stores.Elem^"); -const TypeProxy Elem::PROXY; - -Elem::Elem(INTEGER id) : Store(id) {} - -const std::string &Elem::getTypeName() const { - return TYPENAME; -} - -void Elem::internalize(Reader &reader) { - Store::internalize(reader); - if (reader.isCancelled()) return; - reader.readVersion(0, 0); -} - -const std::string Model::TYPENAME("Models.Model^"); -const TypeProxy Model::PROXY; - -Model::Model(INTEGER id) : Elem(id) {} - -const std::string &Model::getTypeName() const { - return TYPENAME; -} - -void Model::internalize(Reader &reader) { - Elem::internalize(reader); - if (reader.isCancelled()) return; - reader.readVersion(0, 0); -} - -const std::string ContainerModel::TYPENAME("Containers.Model^"); -const TypeProxy ContainerModel::PROXY; - -ContainerModel::ContainerModel(INTEGER id) : Model(id) {} - -const std::string &ContainerModel::getTypeName() const { - return TYPENAME; -} - -void ContainerModel::internalize(Reader &reader) { - Model::internalize(reader); - if (reader.isCancelled()) return; - reader.readVersion(0, 0); -} - } // namespace odc