summaryrefslogtreecommitdiffstats
path: root/kdesu/kdesud/lexer.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:34 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:34 -0600
commitb529f046c9a64ac5fcfa60747af940cf972b3ebc (patch)
tree83c28cf7fa8fed1960ebd3924b579e7ed8c95cc6 /kdesu/kdesud/lexer.h
parent6508fe4c40c60fd7a43bd3d9e19b762e10ea3f53 (diff)
downloadtdebase-b529f046c9a64ac5fcfa60747af940cf972b3ebc.tar.gz
tdebase-b529f046c9a64ac5fcfa60747af940cf972b3ebc.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'kdesu/kdesud/lexer.h')
-rw-r--r--kdesu/kdesud/lexer.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/kdesu/kdesud/lexer.h b/kdesu/kdesud/lexer.h
deleted file mode 100644
index d8f529cd8..000000000
--- a/kdesu/kdesud/lexer.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* vi: ts=8 sts=4 sw=4
- *
- * This file is part of the KDE project, module tdesu.
- * Copyright (C) 1999,2000 Geert Jansen <jansen@kde.org>
- */
-
-#ifndef __Lexer_h_included__
-#define __Lexer_h_included__
-
-class TQCString;
-
-/**
- * This is a lexer for the tdesud protocol.
- */
-
-class Lexer {
-public:
- Lexer(const TQCString &input);
- ~Lexer();
-
- /** Read next token. */
- int lex();
-
- /** Return the token's value. */
- TQCString &lval();
-
- enum Tokens {
- Tok_none, Tok_exec=256, Tok_pass, Tok_delCmd,
- Tok_ping, Tok_str, Tok_num , Tok_stop,
- Tok_set, Tok_get, Tok_delVar, Tok_delGroup,
- Tok_host, Tok_prio, Tok_sched, Tok_getKeys,
- Tok_chkGroup, Tok_delSpecialKey, Tok_exit
- };
-
-private:
- TQCString m_Input;
- TQCString m_Output;
-
- int in;
-};
-
-#endif