diff options
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/parser.h b/src/parser.h index 5f5f289..69a6d93 100644 --- a/src/parser.h +++ b/src/parser.h @@ -151,28 +151,6 @@ protected: virtual State *done(const gchar *str) throw (Error) = 0; }; -class QRegister; - -/* - * Super class for states accepting Q-Register specifications - */ -class StateExpectQReg : public State { - bool got_local; - -public: - StateExpectQReg(); - -private: - State *custom(gchar chr) throw (Error); - -protected: - /* - * FIXME: would be nice to pass reg as reference, but there are - * circular header dependencies... - */ - virtual State *got_register(QRegister *reg) throw (Error) = 0; -}; - class StateStart : public State { public: StateStart(); |