aboutsummaryrefslogtreecommitdiff
path: root/src/core/Print.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Print.h')
-rw-r--r--src/core/Print.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/Print.h b/src/core/Print.h
index 3c83abe..91a7482 100644
--- a/src/core/Print.h
+++ b/src/core/Print.h
@@ -32,9 +32,12 @@ public:
void write(const char *s,int length);
void write(const char *s) { return write((const char *)s, strlen(s)); }
- virtual void println(void);
+ void print(const char c);
void print(const char *s);
void print(int val, RADIX_FORMAT format);
+
+ virtual void println(void);
+ void println(const char c);
void println(const char *s);
void println(int val, RADIX_FORMAT format);
};