summaryrefslogtreecommitdiff
path: root/tracker/AdminServer/TokenLine.h
blob: 0096f056b7ef7d3a94d8becb50de0048697f0c3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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