From: Maxim Mamontov <faust@gts.dp.ua>
Date: Wed, 5 Jan 2011 14:51:09 +0000 (+0200)
Subject: Приведено в порядок заголовочний файл stg_message.h
X-Git-Tag: 2.407-rc3~210
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/892385e632dee65c9eac60ba3a358e9e95d4a193?ds=sidebyside;hp=--cc

Приведено в порядок заголовочний файл stg_message.h
---

892385e632dee65c9eac60ba3a358e9e95d4a193
diff --git a/include/stg_message.h b/include/stg_message.h
index 156e1731..558100dd 100644
--- a/include/stg_message.h
+++ b/include/stg_message.h
@@ -10,10 +10,11 @@
  $Date: 2010/03/04 11:49:52 $
  */
 
-#include <time.h>
+#include <ctime>
 #include <string>
 
-using namespace std;
+#include "os_int.h"
+
 //-----------------------------------------------------------------------------
 struct STG_MSG_HDR
 {
@@ -40,15 +41,11 @@ unsigned    repeatPeriod;
 //-----------------------------------------------------------------------------
 struct STG_MSG
 {
-STG_MSG()
-    : header(),
-      text()
-{};
+STG_MSG() {};
 
 STG_MSG_HDR header;
-string      text;
+std::string text;
 };
 //-----------------------------------------------------------------------------
 
 #endif
-