diff options
Diffstat (limited to 'Master/Real-Time Systems/RTS_P6/A1/src/CanAnalyzer.h')
| -rw-r--r-- | Master/Real-Time Systems/RTS_P6/A1/src/CanAnalyzer.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Master/Real-Time Systems/RTS_P6/A1/src/CanAnalyzer.h b/Master/Real-Time Systems/RTS_P6/A1/src/CanAnalyzer.h new file mode 100644 index 0000000..1012bb3 --- /dev/null +++ b/Master/Real-Time Systems/RTS_P6/A1/src/CanAnalyzer.h @@ -0,0 +1,23 @@ +/* + * CanAnalyzer.h + * + * Created on: 18.01.2011 + * Author: istsveise + */ + +#ifndef CANANALYZER_H_ +#define CANANALYZER_H_ + +#include "CanMessage.h" +#include <vector> + +using namespace std; + +class CanAnalyzer { +public: + CanAnalyzer(); + virtual ~CanAnalyzer(); + static int getMaxTransmissionTimeUsec(CanMessage&); +}; + +#endif /* CANANALYZER_H_ */ |
