mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-27 01:56:14 +01:00
10 lines
149 B
C
10 lines
149 B
C
|
|
||
|
struct JMRIParser
|
||
|
{
|
||
|
static void parse(const char * command);
|
||
|
|
||
|
private:
|
||
|
static const int MAX_PARAMS=10;
|
||
|
static int p[MAX_PARAMS];
|
||
|
};
|