Mockups for data facades
This commit is contained in:
parent
5dc1ed6696
commit
a9ac0ac725
@ -26,6 +26,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
//TODO: Umbauen in Private Data Facade
|
||||
|
||||
//TODO: Umbauen in Private Data Facade
|
||||
|
||||
#ifndef NODEINFORMATIONHELPDESK_H_
|
||||
|
@ -111,6 +111,7 @@ OSRM::OSRM(const char * server_ini_path, const bool use_shared_memory)
|
||||
//TODO: fetch pointers from shared memory
|
||||
|
||||
//TODO: objects = new QueryObjectsStorage()
|
||||
query_data_facade = new SharedDataFacade<QueryEdge::EdgeData>();
|
||||
|
||||
//TODO: generate shared memory plugins
|
||||
RegisterPlugin(new HelloWorldPlugin());
|
||||
|
@ -21,12 +21,8 @@ or see http://www.gnu.org/licenses/agpl.txt.
|
||||
#ifndef INTERNAL_DATA_FACADE
|
||||
#define INTERNAL_DATA_FACADE
|
||||
|
||||
//implements all data storage when shared memory is _NOT_ used
|
||||
|
||||
#include "BaseDataFacade.h"
|
||||
|
||||
#include "../../DataStructures/StaticGraph.h"
|
||||
|
||||
template<class EdgeDataT>
|
||||
class InternalDataFacade : public BaseDataFacade<EdgeDataT> {
|
||||
|
||||
|
@ -21,12 +21,8 @@ or see http://www.gnu.org/licenses/agpl.txt.
|
||||
#ifndef INTERNAL_DATA_FACADE
|
||||
#define INTERNAL_DATA_FACADE
|
||||
|
||||
//implements all data storage when shared memory is _NOT_ used
|
||||
|
||||
#include "BaseDataFacade.h"
|
||||
|
||||
#include "../../DataStructures/StaticGraph.h"
|
||||
|
||||
template<class EdgeDataT>
|
||||
class SharedDataFacade : public BaseDataFacade<EdgeDataT> {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user