From 5dc1ed669640d72e0c696c7e4898b9e671f1dad5 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 17 Sep 2013 18:55:53 +0200 Subject: [PATCH] plugging in base facade ptr --- Server/DataStructures/BaseDataFacade.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Server/DataStructures/BaseDataFacade.h b/Server/DataStructures/BaseDataFacade.h index b09deb010..fc9fd0c0e 100644 --- a/Server/DataStructures/BaseDataFacade.h +++ b/Server/DataStructures/BaseDataFacade.h @@ -68,9 +68,16 @@ public: bool & result ) const = 0; +<<<<<<< HEAD >>>>>>> added graph data access virtual unsigned GetNumberOfEdges() const = 0; +======= + //node and edge information access + virtual FixedPointCoordinate GetCoordinateOfNode( + const unsigned id + ) const = 0; +>>>>>>> plugging in base facade ptr virtual unsigned GetOutDegree( const NodeID n ) const = 0; @@ -99,12 +106,16 @@ public: const NodeID from, const NodeID to ) const = 0; +<<<<<<< HEAD virtual EdgeID FindEdgeIndicateIfReverse( const NodeID from, const NodeID to, bool & result ) const = 0; +======= +}; +>>>>>>> plugging in base facade ptr };