#include "WireFormats.h" // These shoud not include a period. These are used in broadcast message // channels. A period in one of these could cause a message to be ambiguous. const std::string WireL1Invalid = "WireL1Invalid"; const std::string WireTosInvalid = "WireTosInvalid"; const std::string WireL1Data = "WireL1Data"; const std::string WireTosData = "WireTosData"; const std::string WireImbalanceData = "WireImbalanceData"; const std::string WirePutVolumeData = "WirePutVolumeData"; const std::string WireCallVolumeData = "WireCallVolumeData"; const std::string WireNyseBidData = "WireNyseBidData"; const std::string WireNyseAskData = "WireNyseAskData"; const std::string WireHaltData = "WireHaltData"; const std::string WireLimitUpData = "WireLimitUpData"; const std::string WireLimitDownData = "WireLimitDownData"; // Use this field to hold one of the commands listed above. const std::string WireCommand = "command"; // For the items with data, store the data in this field. It would be the // contents of one of the records above, with no encoding. Just make a // string of the appropriate length. const std::string WireBody = "body"; // Use this field to store the symbol name. const std::string WireSymbol = "symbol";