]> git.stg.codes - stg.git/commitdiff
Get<something>Num -> Count
authorMaxim Mamontov <faust.madf@gmail.com>
Sat, 13 Aug 2011 16:07:49 +0000 (19:07 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Sat, 13 Aug 2011 16:07:49 +0000 (19:07 +0300)
projects/stargazer/tariffs_impl.cpp
projects/stargazer/tariffs_impl.h
projects/stargazer/users_impl.cpp
projects/stargazer/users_impl.h

index d2ea7c9a049ae9c2d606deed6b26c2aa9621db8c..a912c3387e8eb14f141b48d8cabb49e1fa7b8039 100644 (file)
@@ -86,7 +86,7 @@ for (int i = 0; i < tariffsNum; i++)
 return 0;
 }
 //-----------------------------------------------------------------------------
-int TARIFFS_IMPL::GetTariffsNum() const
+size_t TARIFFS_IMPL::Count() const
 {
 STG_LOCKER lock(&mutex, __FILE__, __LINE__);
 return tariffs.size();
index b8aac298bf03788394f99dd7a641a917bd8d4e19..cef5fed71cc8fdbe04860d08afc515f0fa7d2142 100644 (file)
@@ -60,7 +60,7 @@ public:
     int     ReadTariffs ();
     const TARIFF * FindByName(const std::string & name) const;
     const TARIFF * GetNoTariff() const { return &noTariff; };
-    int     GetTariffsNum() const;
+    size_t  Count() const;
     int     Del(const std::string & name, const ADMIN * admin);
     int     Add(const std::string & name, const ADMIN * admin);
     int     Chg(const TARIFF_DATA & td, const ADMIN * admin);
index febd90f5575d2ba2f4a9f829cea12d2a180e2604..5ad112b9523aae65158d8aaebf0c9545a5ea45c5 100644 (file)
@@ -561,11 +561,6 @@ while (iter != usersToDelete.end())
 return;
 }
 //-----------------------------------------------------------------------------
-int USERS_IMPL::GetUserNum() const
-{
-return users.size();
-}
-//-----------------------------------------------------------------------------
 void USERS_IMPL::AddToIPIdx(user_iter user)
 {
 printfd(__FILE__, "USERS: Add IP Idx\n");
index 46b171399affe45d7f4cfccc0026bfb5f865ed79..4c586b0613363f30f45260fc8af4e90c404e72c5 100644 (file)
@@ -114,7 +114,7 @@ public:
     void            Del(const std::string & login, const ADMIN * admin);
 
     int             ReadUsers();
-    int             GetUserNum() const;
+    size_t          Count() const { return users.size(); }
 
     int             FindByIPIdx(uint32_t ip, USER_PTR * user) const;
     int             FindByIPIdx(uint32_t ip, USER_IMPL ** user) const;