Merge branch 'feature/e-endstop' into merge-abc-with-homing
[clinton/Smoothieware.git] / src / libs / SerialMessage.h
1 #ifndef SERIALMESSAGE_H
2 #define SERIALMESSAGE_H
3
4 #include <string>
5
6 class StreamOutput;
7
8 struct SerialMessage {
9 StreamOutput* stream;
10 std::string message;
11 };
12 #endif