/* 
 * File:   network_factory.h
 * Author: jtorres
 *
 * Created on October 18, 2017, 8:36 AM
 */

#ifndef NETWORK_FACTORY_H
#define	NETWORK_FACTORY_H

#include "network.h"

class NetworkFactory
{
public:
    bool DataAvail(char flag, int num);
    void init_loop_dataPack(STATION *loop);
    FEP_LINE * load_lines(int *size, const char * fName);
    STATION * load_lds(const char * fName);


private:
    
};


#endif	/* NETWORK_FACTORY_H */

