1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00
CommandStation-EX/JMRIParser.h
2020-05-27 09:40:12 +01:00

12 lines
213 B
C++

#ifndef JMRIParser_h
#define JMRIParser_h
struct JMRIParser
{
static void parse(Stream & stream,const char * command);
private:
static const int MAX_PARAMS=10;
static int p[MAX_PARAMS];
};
#endif