VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfGuiCore
vrfGuiExportPlugin.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2012 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: vrfGuiExportPlugin.h,v $ $Revision: 1.2 $ $State: Exp $
7
******************************************************************************/
8
13
14
#pragma once
15
16
#include <
vrfutil/vrfPluginInformation.h
>
17
19
20
#ifdef _WIN32
21
#ifdef VRFPLUGIN_EXPORTS
22
#define DT_VRF_DLL_PLUGIN __declspec ( dllexport )
23
#else
24
#define DT_VRF_DLL_PLUGIN __declspec ( dllimport )
25
#endif
26
#else
27
#define DT_VRF_DLL_PLUGIN
28
#endif
29
30
namespace
makVrv
31
{
32
class
DtDe;
33
}
34
35
namespace
makVrf
36
{
37
class
DtVrfGuiCommandLineParser;
38
}
39
41
#define DT_DE_PLUGIN_EXPORT_MACRO DT_VRF_DLL_PLUGIN
42
44
#include <
vrvCore/exportPlugin.h
>
45
46
47
extern
"C"
48
{
50
DT_VRF_DLL_PLUGIN
void
DtPluginInformation
(
DtVrfPluginInformation
& info);
51
}
52
56
extern
"C"
57
{
58
DT_VRF_DLL_PLUGIN
void
postInitDeModule
(
makVrv::DtDe
&);
59
}
60
65
extern
"C"
66
{
67
DT_VRF_DLL_PLUGIN
bool
initQtDesignerModule
(
makVrv::DtDe
&);
68
}
69
72
extern
"C"
73
{
74
DT_VRF_DLL_PLUGIN
void
initializeCommandLineArguments
(
makVrf::DtVrfGuiCommandLineParser
*);
75
}
76
79
80
#ifdef BUILDING_PLUGIN
81
82
#include "
vrfutil/version.h
"
83
#include <vlutil/vlString.h>
84
85
extern
"C"
{
86
DT_VRF_DLL_PLUGIN
void
DtPluginVersion(
DtString
& version)
87
{
88
version =
PLUGIN_COMPATIBLE_VERSION
;
89
90
#ifdef WIN32
91
#ifdef NDEBUG
92
version +=
" Release"
;
93
#else
94
version +=
" Debug"
;
95
#endif
96
#endif
97
}
98
}
99
100
#endif
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)