Drive Engine  1.0.0
Plateforme de reconstruction 3D
DynamicLibraryManagement.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "Export.h"
6 #include "IExportable.h"
7 
8 
9 //=====================================================================
10 // Dynamic library management
11 //=====================================================================
12 
23 FRAMEWORK_API IExportable* CreateExportable(const char* identifier);
24 
39 FRAMEWORK_API void LoadExportable(const char* identifier, const char* constructorName, const char* path);
The main interface
Definition: IExportable.h:12