#include <ctime>
#include <algorithm>
+#include "stg/user.h"
+#include "stg/locker.h"
+#include "stg/user_property.h"
#include "ping.h"
-#include "user.h"
-#include "stg_locker.h"
-#include "user_property.h"
class PING_CREATOR
{
return 0;
}
//-----------------------------------------------------------------------------
-int PING_SETTINGS::ParseIntInRange(const std::string & str, int min, int max, int * val)
-{
-if (str2x(str.c_str(), *val))
- {
- errorStr = "Incorrect value \'" + str + "\'.";
- return -1;
- }
-if (*val < min || *val > max)
- {
- errorStr = "Value \'" + str + "\' out of range.";
- return -1;
- }
-return 0;
-}
-//-----------------------------------------------------------------------------
PING::PING()
: users(NULL),
nonstop(false),