source: tmcsimulator/branches/fep_client_cpp/network_factory.cpp @ 71

Revision 71, 303 bytes checked in by jtorres, 9 years ago (diff)

corrected compile errors, minor housekeeping

Line 
1#include "network.h"
2
3FEP_LINE_LDS * load_lines(int *size, const char * fName)
4{
5        FEP_LINE_LDS *lines = (FEP_LINE_LDS *) malloc(sizeof(FEP_LINE_LDS));
6        *size = 1;
7        return lines;   
8}
9
10LDS_LOOP * load_lds(const char * fName)
11{
12        LDS_LOOP *lds_map = (LDS_LOOP *) malloc(sizeof(LDS_LOOP));
13        return lds_map;
14}
Note: See TracBrowser for help on using the repository browser.