DEADSOFTWARE

Can now read entire "empty" document as Alien
[odcread.git] / store.cc
1 #include <store.h>
3 namespace odc {
5 Store::Store(INTEGER id): d_id(id) {}
7 INTEGER Store::getId() {
8 return d_id;
9 }
11 Domain* Store::getDomain() {
12 return 0;
13 }
15 }