This commit is contained in:
Andrey 2021-06-26 00:15:55 -04:00
parent 9dc4e50fb3
commit f2db775586
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/*
* @file logicdata_csv_reader.cpp
*
* @date Jun 26, 2021
* @author Andrey Belomutskiy, (c) 2012-2021
*/

View File

@ -0,0 +1,14 @@
/*
* @file logicdata_csv_reader.h
*
* @date Jun 26, 2021
* @author Andrey Belomutskiy, (c) 2012-2021
*/
class CsvReader {
public:
void open(char *fileName, int * columnIndeces);
};

View File

@ -1,5 +1,6 @@
FRAMEWORK_SRC_CPP = unit_test_framework.cpp \
engine_test_helper.cpp \
logicdata_csv_reader.cpp \
boards.cpp \
global_execution_queue.cpp \
test_basic_math/test_find_index.cpp \