This commit is contained in:
7
bsp_hosted/acsDummies/GpsDummy.cpp
Normal file
7
bsp_hosted/acsDummies/GpsDummy.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#include "GpsDummy.h"
|
||||
|
||||
GpsDummy::GpsDummy() {
|
||||
}
|
||||
|
||||
GpsDummy::~GpsDummy() {
|
||||
}
|
13
bsp_hosted/acsDummies/GpsDummy.h
Normal file
13
bsp_hosted/acsDummies/GpsDummy.h
Normal file
@ -0,0 +1,13 @@
|
||||
#ifndef BSP_HOSTED_ACSDUMMIES_GPSDUMMY_H_
|
||||
#define BSP_HOSTED_ACSDUMMIES_GPSDUMMY_H_
|
||||
|
||||
/**
|
||||
* @brief Dummy class to simulate sending of GPS data to ACS controller.
|
||||
*/
|
||||
class GpsDummy : public ExtendedControllerBase {
|
||||
public:
|
||||
GpsDummy();
|
||||
virtual ~GpsDummy();
|
||||
};
|
||||
|
||||
#endif /* BSP_HOSTED_ACSDUMMIES_GPSDUMMY_H_ */
|
Reference in New Issue
Block a user