DEADSOFTWARE

c5bd027c79c3ab828e55a39c87c02c884810ed35
[odcread.git] / typepath.h
1 #ifndef _TYPEPATH_H_
2 #define _TYPEPATH_H_
4 #include <vector>
5 #include <string>
7 namespace odc {
9 class TypePath : public std::vector<std::string> {
10 public:
11 std::string toString() const;
12 };
14 }
16 #endif // _TYPEPATH_H_