X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=store%2Fstore.cc;h=e9dbb932b9d6097817485c712fba5155a8c76165;hb=816241afc2a91e54e86b4534ce5264f11d229dc6;hp=c85d831b7e058f2d525860c9105e3e61aca415e5;hpb=8bb15b1dd0927add217ff8ff4ef4e002dc49bff3;p=odcread.git diff --git a/store/store.cc b/store/store.cc index c85d831..e9dbb93 100644 --- a/store/store.cc +++ b/store/store.cc @@ -1,30 +1,7 @@ -#include "store/store.h" -#include "reader/reader.h" -#include "visitor/visitor.h" - -#include - +#include "store/module.ih" namespace odc { -template 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::PROXY;