14 lines
218 B
C
14 lines
218 B
C
|
#ifndef TACHOMETERDATA_H
|
||
|
#define TACHOMETERDATA_H
|
||
|
|
||
|
#include "cardbase.h"
|
||
|
|
||
|
class TachometerData : public CardBase {
|
||
|
public:
|
||
|
TachometerData();
|
||
|
|
||
|
TachometerVariables variables_[4];
|
||
|
};
|
||
|
|
||
|
#endif // TACHOMETERDATA_H
|