mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 15:46:14 +01:00
bd7c8bf78e
Make naming consistent with our marketing of ex-rail for files and defines * Rename RMFT.h to EXRAIL.h * Rename RMFT2.cpp to EXRAIL2.cpp * Rename RMFT2.h to EXRAIL2.h * Rename RMFT2MacroReset.h to EXRAIL2MacroReset.h * Rename RMFTMacros.h to EXRAILMacros.h * Rename RMFT references to EXRAIL
24 lines
390 B
C++
24 lines
390 B
C++
#ifndef EXRAIL_H
|
|
#define EXRAIL_H
|
|
|
|
#if defined(EXRAIL_ACTIVE)
|
|
#include "EXRAIL2.h"
|
|
|
|
class RMFT {
|
|
public:
|
|
static void inline begin() {RMFT2::begin();}
|
|
static void inline loop() {RMFT2::loop();}
|
|
};
|
|
|
|
#include "EXRAILMacros.h"
|
|
|
|
#else
|
|
// Dummy RMFT
|
|
class RMFT {
|
|
public:
|
|
static void inline begin() {}
|
|
static void inline loop() {}
|
|
};
|
|
#endif
|
|
#endif
|