mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
ed279a26d8
Separate steaming and parsers
10 lines
165 B
C++
10 lines
165 B
C++
|
|
struct JMRIParser
|
|
{
|
|
static void parse(Stream & stream,const char * command);
|
|
|
|
private:
|
|
static const int MAX_PARAMS=10;
|
|
static int p[MAX_PARAMS];
|
|
};
|