Refactor for a central include directory

This commit is contained in:
Paul Hollinsky
2018-10-22 11:52:34 -04:00
parent 12451def11
commit 8e6b0d0b0e
127 changed files with 263 additions and 265 deletions
@@ -0,0 +1,20 @@
#ifndef __CANMESSAGE_H_
#define __CANMESSAGE_H_
#include "icsneo/communication/message/message.h"
namespace icsneo {
class CANMessage : public Message {
public:
uint32_t arbid;
uint8_t dlcOnWire;
bool isRemote = false;
bool isExtended = false;
bool isCANFD = false;
bool baudrateSwitch = false; // CAN FD only
};
}
#endif