auto-sync
This commit is contained in:
parent
cad1cdf3b2
commit
b3cbb8bc44
|
@ -19,4 +19,5 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
|
|||
$(PROJECT_DIR)/config/engines/rover_v8.cpp \
|
||||
$(PROJECT_DIR)/config/engines/mazda_323.cpp \
|
||||
$(PROJECT_DIR)/config/engines/saturn_ion.cpp \
|
||||
$(PROJECT_DIR)/config/engines/test_engine.cpp \
|
||||
$(PROJECT_DIR)/config/engines/mitsubishi.cpp
|
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* @file test_engine.cpp
|
||||
*
|
||||
* @date Nov 14, 2014
|
||||
* @author Andrey Belomutskiy, (c) 2012-2014
|
||||
*/
|
||||
|
||||
#include "main.h"
|
||||
#include "test_engine.h"
|
||||
|
||||
void setTestEngineConfiguration(engine_configuration_s *engineConfiguration) {
|
||||
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* @file test_engine.h
|
||||
*
|
||||
* @date Nov 14, 2014
|
||||
* @author Andrey Belomutskiy, (c) 2012-2014
|
||||
*/
|
||||
#ifndef TEST_ENGINE_H_
|
||||
#define TEST_ENGINE_H_
|
||||
|
||||
#include "engine_configuration.h"
|
||||
|
||||
void setTestEngineConfiguration(engine_configuration_s *engineConfiguration);
|
||||
|
||||
#endif /* TEST_ENGINE_H_ */
|
Loading…
Reference in New Issue