summaryrefslogtreecommitdiff
path: root/tracker/AdminServer/TokenLine.h
diff options
context:
space:
mode:
Diffstat (limited to 'tracker/AdminServer/TokenLine.h')
-rw-r--r--tracker/AdminServer/TokenLine.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/tracker/AdminServer/TokenLine.h b/tracker/AdminServer/TokenLine.h
new file mode 100644
index 0000000..0096f05
--- /dev/null
+++ b/tracker/AdminServer/TokenLine.h
@@ -0,0 +1,36 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+// TokenLine.h: interface for the CommandLine class.
+//
+//////////////////////////////////////////////////////////////////////
+
+#ifndef TOKENLINE_H
+#define TOKENLINE_H
+
+#pragma once
+
+#define MAX_LINE_TOKENS 128
+#define MAX_LINE_CHARS 2048
+
+class TokenLine
+{
+
+public:
+ TokenLine();
+ TokenLine( char * string);
+ virtual ~TokenLine();
+
+ char * GetRestOfLine(int i); // returns all chars after token i
+ int CountToken(); // returns number of token
+ char * CheckToken(char * parm);// returns token after token parm or ""
+ char * GetToken(int i); // returns token i
+ char * GetLine(); // returns full line
+ bool SetLine (const char * newLine); // set new token line and parses it
+
+ char m_tokenBuffer[MAX_LINE_CHARS];
+ char m_fullLine[MAX_LINE_CHARS];
+ char * m_token[MAX_LINE_TOKENS];
+ int m_tokenNumber;
+
+};
+
+#endif // !defined TOKENLINE_H