umn-drone / project / libs / routing / include / graph_factory.h
graph_factory.h
Raw
#ifndef GRAPH_FACTORY_H_
#define GRAPH_FACTORY_H_

#include "graph.h"

namespace routing {

class IGraphFactory {
public:
	virtual ~IGraphFactory() {}
	virtual IGraph* Create(const std::string& file) const = 0;
};

}

#endif