broke classes into their own files

This commit is contained in:
Chris Punches
2017-04-22 08:07:11 -04:00
parent f66391d2b0
commit 69539ae019
37 changed files with 1016 additions and 353 deletions

22
src/loaders/Conf.h Normal file
View File

@@ -0,0 +1,22 @@
//
// Created by phanes on 4/22/17.
//
#ifndef FTESTS_CONF_H
#define FTESTS_CONF_H
#include "JLoader.h"
class Conf: public JLoader
{
private:
std::string plan_path;
std::string units_path;
public:
using JLoader::JLoader;
Conf( std::string filename );
std::string get_plan_path();
std::string get_units_path();
};
#endif //FTESTS_CONF_H