diff options
Diffstat (limited to 'server/server_status.h')
-rw-r--r-- | server/server_status.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/server/server_status.h b/server/server_status.h index 5a7cb6c..82ec8ec 100644 --- a/server/server_status.h +++ b/server/server_status.h @@ -28,8 +28,6 @@ #ifndef __MIAV_SERVER_STATUS_H__ #define __MIAV_SERVER_STATUS_H__ -#include "info.h" - #include <sys/time.h> // How many steps to do avarage calculation over. @@ -40,14 +38,13 @@ class ServerStatus { public: - ServerStatus(Info *info); + ServerStatus(); ~ServerStatus(); void checkPoint(); private: long long interval; - Info *info; unsigned int frametime[BUFFERSIZE]; struct timeval time; struct timeval oldtime; |