DEADSOFTWARE

Reader split into files
[odcread.git] / typepath / 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_