test: added GraphFilter and GraphFilterConductor tests
This commit is contained in:
@@ -15,6 +15,7 @@ class Graph
|
||||
public:
|
||||
Graph();
|
||||
virtual ~Graph();
|
||||
Graph& operator=(const Graph& other);
|
||||
|
||||
// FilterableGraph implementation
|
||||
virtual void copy(const FilterableGraph* other);
|
||||
@@ -71,8 +72,6 @@ private:
|
||||
Edge* insertEdge(Edge::EdgeType type, Node* from, Node* to);
|
||||
void removeEdgeInternal(Edge* edge);
|
||||
|
||||
const std::string m_delimiter;
|
||||
|
||||
std::map<Id, std::shared_ptr<Node>> m_nodes;
|
||||
std::map<Id, std::shared_ptr<Edge>> m_edges;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user