libSplash
ColTypeUnknown.hpp
1 
23 #ifndef COLTYPEUNKNOWN_H
24 #define COLTYPEUNKNOWN_H
25 
26 #include "splash/CollectionType.hpp"
27 #include <string>
28 
29 namespace splash
30 {
32  {
33  public:
34 
35  size_t getSize() const
36  {
37  return 0;
38  }
39 
40  std::string toString() const
41  {
42  return "Unknown";
43  }
44  };
45 }
46 
47 #endif /* COLTYPEUNKNOWN_H */
std::string toString() const