mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 16:16:13 +01:00
9 lines
157 B
C++
9 lines
157 B
C++
#ifndef HTTPParser_h
|
|
#define HTTPParser_h
|
|
#include <Arduino.h>
|
|
class HTTPParser {
|
|
public:
|
|
static void parse(Print & stream, byte * cmd);
|
|
};
|
|
#endif
|