Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/info.h')
-rw-r--r--src/core/info.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/info.h b/src/core/info.h
index dfec17c..2859dac 100644
--- a/src/core/info.h
+++ b/src/core/info.h
@@ -143,11 +143,18 @@ public:
void set_timestamp(const unsigned long timestamp);
/// add a line of info text
- void add_text(const std::string & text);
+ void add_line(const std::string & text);
/// add a line of info text
+ void add_line(const char *text);
+
+ /// add info text without newline
+ void add_text(const std::string & text);
+
+ /// add info text without newline
void add_text(const char *text);
+
/// clear the info text
void clear_text();