Changeset 71 in tmcsimulator for branches/fep_client_cpp/network_factory.cpp
- Timestamp:
- 09/07/2017 12:59:00 AM (9 years ago)
- File:
-
- 1 edited
-
branches/fep_client_cpp/network_factory.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/fep_client_cpp/network_factory.cpp
r70 r71 3 3 FEP_LINE_LDS * load_lines(int *size, const char * fName) 4 4 { 5 FEP_LINE_LDS lines[1];5 FEP_LINE_LDS *lines = (FEP_LINE_LDS *) malloc(sizeof(FEP_LINE_LDS)); 6 6 *size = 1; 7 7 return lines; 8 8 } 9 9 10 FEP_LDS* load_lds(const char * fName)10 LDS_LOOP * load_lds(const char * fName) 11 11 { 12 FEP_LDS lds[1];13 return lds ;12 LDS_LOOP *lds_map = (LDS_LOOP *) malloc(sizeof(LDS_LOOP)); 13 return lds_map; 14 14 }
Note: See TracChangeset
for help on using the changeset viewer.
