1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 16:16:13 +01:00
CommandStation-EX/JMRIParser.h

10 lines
165 B
C
Raw Normal View History

2020-05-25 14:38:18 +02:00
struct JMRIParser
{
static void parse(Stream & stream,const char * command);
2020-05-25 14:38:18 +02:00
private:
static const int MAX_PARAMS=10;
static int p[MAX_PARAMS];
};