blob: 1012bb360e1212e7705919d7d80e26e657197709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_ */
|