From OpenSCADAWiki
Jump to: navigation, search
(Importing a new version from external source)
 
(Importing a new version from external source)
 
Line 1: Line 1:
The structure of the message (class — TMess:: SRec):
+
The structure of the message (class — TMess::SRec):
* ''time_t time; '' — time of the message;  
+
* ''SRec( ); SRec( time_t itm, int iutime = 0, const string &icat = "", int8_t ilev = 0, const string &imess = "" );'' — the class constructors;
* ''int utime;'' — microsecond of the message time;  
+
* ''bool operator==( SRec &vl );'' — the object comparing;
* ''string categ;'' — category of messages (usually the way inside the system);  
+
* ''time_t time; '' — time of the message;
* ''int8_t level;'' — the level of the message;  
+
* ''int utime;'' — microsecond of the message time;
 +
* ''string categ;'' — category of messages (usually the way inside the system);
 +
* ''int8_t level;'' — the level of the message;
 
* ''string mess;'' — message.
 
* ''string mess;'' — message.

Latest revision as of 20:50, 26 August 2021

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Documents/API)
The structure of the message (class — TMess::SRec):
* ''SRec( ); SRec( time_t itm, int iutime = 0, const string &icat = "", int8_t ilev = 0, const string &imess = "" );'' — the class constructors;
* ''bool operator==( SRec &vl );'' — the object comparing;
* ''time_t time; '' — time of the message;
* ''int utime;'' — microsecond of the message time;
* ''string categ;'' — category of messages (usually the way inside the system);
* ''int8_t level;'' — the level of the message;
* ''string mess;'' — message.
TranslationThe structure of the message (class — TMess::SRec):
* ''SRec( ); SRec( time_t itm, int iutime = 0, const string &icat = "", int8_t ilev = 0, const string &imess = "" );'' — the class constructors;
* ''bool operator==( SRec &vl );'' — the object comparing;
* ''time_t time; '' — time of the message;
* ''int utime;'' — microsecond of the message time;
* ''string categ;'' — category of messages (usually the way inside the system);
* ''int8_t level;'' — the level of the message;
* ''string mess;'' — message.

The structure of the message (class — TMess::SRec):

  • SRec( ); SRec( time_t itm, int iutime = 0, const string &icat = "", int8_t ilev = 0, const string &imess = "" ); — the class constructors;
  • bool operator==( SRec &vl ); — the object comparing;
  • time_t time; — time of the message;
  • int utime; — microsecond of the message time;
  • string categ; — category of messages (usually the way inside the system);
  • int8_t level; — the level of the message;
  • string mess; — message.