diff options
Diffstat (limited to 'sinksh/state.h')
-rw-r--r-- | sinksh/state.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sinksh/state.h b/sinksh/state.h index 2a0eb7c..0796caf 100644 --- a/sinksh/state.h +++ b/sinksh/state.h | |||
@@ -30,6 +30,9 @@ public: | |||
30 | void printLine(const QString &message = QString(), unsigned int indentationLevel = 0) const; | 30 | void printLine(const QString &message = QString(), unsigned int indentationLevel = 0) const; |
31 | void printError(const QString &errorMessage, const QString &errorCode = QString()) const; | 31 | void printError(const QString &errorMessage, const QString &errorCode = QString()) const; |
32 | 32 | ||
33 | void stageTableLine(const QStringList &) const; | ||
34 | void flushTable() const; | ||
35 | |||
33 | void setDebugLevel(unsigned int level); | 36 | void setDebugLevel(unsigned int level); |
34 | unsigned int debugLevel() const; | 37 | unsigned int debugLevel() const; |
35 | 38 | ||
@@ -46,6 +49,9 @@ public: | |||
46 | static bool hasEventLoop(); | 49 | static bool hasEventLoop(); |
47 | 50 | ||
48 | private: | 51 | private: |
52 | void printTable(const QList<QStringList> &) const; | ||
53 | |||
54 | private: | ||
49 | class Private; | 55 | class Private; |
50 | Private *const d; | 56 | Private *const d; |
51 | }; | 57 | }; |