]> git.stg.codes - stg.git/commitdiff
Приведено в порядок заголовочний файл stg_message.h
authorMaxim Mamontov <faust@gts.dp.ua>
Wed, 5 Jan 2011 14:51:09 +0000 (16:51 +0200)
committerMaxim Mamontov <faust@gts.dp.ua>
Wed, 5 Jan 2011 14:51:09 +0000 (16:51 +0200)
include/stg_message.h

index 156e17317a149ea980e997ff815d427f892fad36..558100dd555e24356156010042f8717577e90669 100644 (file)
  $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
-