![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /***************************************************************************** 00002 * Copyright (c) 2012 MAK Technologies, Inc. 00003 * All rights reserved. 00004 *****************************************************************************/ 00005 00011 00012 #pragma once 00013 00014 // Setup proper plug-in export symbol. 00015 #ifdef _WIN32 00016 # ifdef EXAMPLEHUMBLEDIALOG_EXPORTS 00017 # define DT_DE_PLUGIN_EXPORT_MACRO __declspec ( dllexport ) 00018 # else 00019 # define DT_DE_PLUGIN_EXPORT_MACRO __declspec ( dllimport ) 00020 # endif 00021 #else 00022 # define DT_DE_PLUGIN_EXPORT_MACRO 00023 #endif 00024 00025 #include <vrvUtil/signalslib.h> 00026 00027 // Export standard plugging function bool initDeModule(DtDe* de). 00028 #include <vrvCore/exportPlugin.h> 00029 00030 namespace makVrv { class DtDe; } 00031 00037 void init(makVrv::DtDe& de); 00038 00039 00040