1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-03-14 01:53:07 +01:00
CommandStation-EX/JMRIParser.h
2020-05-25 13:38:18 +01:00

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];
};