DEADSOFTWARE

Rename .ih files to module.ih for simplicity
[odcread.git] / alien / part.cc
1 #include "alien/module.ih"
3 namespace odc {
5 AlienPart::AlienPart(Store * const store): d_store(store) {}
7 std::string AlienPart::toString() {
8 if (d_store != 0)
9 return d_store->toString();
10 else
11 return "NULL";
12 }
14 void AlienPart::accept(Visitor &visitor) const {
15 if (d_store != 0) {
16 d_store->accept(visitor);
17 }
18 }
20 } // namespace odc