Merge remote-tracking branch 'upstream/edge' into hack/interim-feed-hold
[clinton/Smoothieware.git] / src / libs / SerialMessage.h
CommitLineData
662a97b9
AW
1#ifndef SERIALMESSAGE_H
2#define SERIALMESSAGE_H
8d54c34c
JM
3
4#include <string>
5
6class StreamOutput;
7
662a97b9 8struct SerialMessage {
838b33b4
AW
9 StreamOutput* stream;
10 std::string message;
662a97b9
AW
11};
12#endif