From: Maxim Mamontov 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?hp=b72598dcbd57c40d05c9bceb6050127975511b37 Приведено в порядок заголовочний файл stg_message.h --- 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 +#include #include -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 -