X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/fd947779e36534941c5d7516ba34e4da21b8406b..25bc185367ffb0caf3197babf44243d1703895e3:/projects/stargazer/services_impl.h diff --git a/projects/stargazer/services_impl.h b/projects/stargazer/services_impl.h index d0c1c52c..2bb9c879 100644 --- a/projects/stargazer/services_impl.h +++ b/projects/stargazer/services_impl.h @@ -48,11 +48,16 @@ public: bool Exists(const std::string & name) const; const std::string & GetStrError() const { return strError; } + size_t Count() const { return data.size(); } + int OpenSearch() const; int SearchNext(int, SERVICE_CONF * service) const; int CloseSearch(int) const; private: + SERVICES_IMPL(const SERVICES_IMPL & rvalue); + SERVICES_IMPL & operator=(const SERVICES_IMPL & rvalue); + typedef list::iterator srv_iter; typedef list::const_iterator const_srv_iter;