All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ITiledGraphLinker.h
1 #pragma once
2 
3 #include "Graphs.h"
4 #include "TiledGraphEdge.h"
5 
6 namespace Eegeo
7 {
8  namespace Graphs
9  {
11  {
12  public:
13  virtual ~ITiledGraphLinker() { ; }
14 
15  virtual bool TryFindMatchingEdge(const Graphs::TiledGraph& tiledGraph, const Graphs::TiledGraphEdgeId& edgeIdA, Graphs::TiledGraphEdgeId& out_edgeIdB) const = 0;
16  };
17  }
18 }