mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-15 01:42:05 +08:00
81491dc57f
* c++ cleanup: standardize file extensions to .cc and .h * cleanup files_common
9 lines
211 B
C++
9 lines
211 B
C++
#pragma once
|
|
#include "file_sensor.h"
|
|
|
|
class LightSensor : public FileSensor {
|
|
public:
|
|
LightSensor(std::string filename) : FileSensor(filename){};
|
|
void get_event(cereal::SensorEventData::Builder &event);
|
|
};
|