![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /***************************************************************************** 00002 * Copyright (c) 2012 MAK Technologies, Inc. 00003 * All rights reserved. 00004 *****************************************************************************/ 00005 00009 00010 // This example plug-in shows how to extend an existing dialog 00011 // (adding more features) through derivation. 00012 00013 #pragma once 00014 00015 // Setup proper plug-in export symbol. 00016 #ifdef _WIN32 00017 # ifdef EXAMPLEEXTENDEDDIALOG_EXPORTS 00018 # define DT_DE_PLUGIN_EXPORT_MACRO __declspec ( dllexport ) 00019 # else 00020 # define DT_DE_PLUGIN_EXPORT_MACRO __declspec ( dllimport ) 00021 # endif 00022 #else 00023 # define DT_DE_PLUGIN_EXPORT_MACRO 00024 #endif 00025 00026 // Export standard plugging function bool initDeModule(DtDe* de). 00027 #include <vrvCore/exportPlugin.h> 00028 00029 namespace makVrv { class DtDe; } 00030 00036 void init(makVrv::DtDe& de);