X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=store%2Fstore.cc;h=a967518550e594006e06d24ded0ebbe16157605c;hb=cf88fc04686af2b4a34f9ccebc9f517cd83be491;hp=6f44e8525457c8135b7eafc9c773753fc93a545f;hpb=7c27903f08ee6069172f92415888a825512cba01;p=odcread.git diff --git a/store/store.cc b/store/store.cc index 6f44e85..a967518 100644 --- a/store/store.cc +++ b/store/store.cc @@ -1,30 +1,7 @@ -#include -#include -#include - -#include - +#include "store/store.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;