source: tmcsimulator/branches/LinuxBasicFEPClient/network_factory.h @ 154

Revision 154, 445 bytes checked in by jtorres, 9 years ago (diff)

LinuxBasicFEPClient: files are in folder, but build script/makefile/project has not been set up. Src code only

Line 
1/*
2 * File:   network_factory.h
3 * Author: jtorres
4 *
5 * Created on October 18, 2017, 8:36 AM
6 */
7
8#ifndef NETWORK_FACTORY_H
9#define NETWORK_FACTORY_H
10
11#include "network.h"
12
13class NetworkFactory
14{
15public:
16    bool DataAvail(char flag, int num);
17    void init_loop_dataPack(STATION *loop);
18    FEP_LINE * load_lines(int *size, const char * fName);
19    STATION * load_lds(const char * fName);
20
21
22private:
23   
24};
25
26
27#endif  /* NETWORK_FACTORY_H */
28
Note: See TracBrowser for help on using the repository browser.