DEADSOFTWARE

Reader split into files
[odcread.git] / store / store.cc
index c85d831b7e058f2d525860c9105e3e61aca415e5..76f0586f3fcf6d714114366bfdd4c80bec024d4f 100644 (file)
@@ -4,27 +4,8 @@
 
 #include <iostream>
 
-
 namespace odc {
 
-template<class T, class A> T join(const A & begin, const A & end, const T &sep) {
-       T result;
-
-       if (begin != end) {
-               A it = begin;
-               result.append(*it);
-               for (++it; it != end; ++it) {
-                       result.append(sep).append(*it);
-               }
-       }
-
-       return result;
-}
-
-std::string TypePath::toString() const {
-       return join(begin(), end(), std::string("->"));
-}
-
 const std::string Store::TYPENAME("Stores.Store^");
 const TopTypeProxy<Store> Store::PROXY;