QCAD
Open Source 2D CAD
Loading...
Searching...
No Matches
opennurbs_pluginlist.h
Go to the documentation of this file.
1/* $NoKeywords: $ */
2/*
3//
4// Copyright (c) 1993-2007 Robert McNeel & Associates. All rights reserved.
5// Rhinoceros is a registered trademark of Robert McNeel & Assoicates.
6//
7// THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY.
8// ALL IMPLIED WARRANTIES OF FITNESS FOR ANY PARTICULAR PURPOSE AND OF
9// MERCHANTABILITY ARE HEREBY DISCLAIMED.
10//
11// For complete openNURBS copyright information see <http://www.opennurbs.org>.
12//
14*/
15
16#if !defined(OPENNURBS_PLUGINLIST_INC_)
17#define OPENNURBS_PLUGINLIST_INC_
18
19/*
20Description:
21 The ON_PluginRef class is used to store a list of
22 application plug-ins that may have saved user data
23 in a 3dm file so they can be loaded as needed for
24 reading their user data.
25*/
27{
28public:
30
31 // executable informtion
33 int m_plugin_type; // CRhinoPlugIn::plugin_type enum value
34 int m_plugin_platform; // 0 = unknown, 1 = C++, 2 = .NET
39 ON_wString m_plugin_filename; // name of executable file
40
41 // developer contact information
50
51 void Default();
52
53 bool Write( ON_BinaryArchive& file ) const;
54 bool Read( ON_BinaryArchive& file );
55
56 void Dump(ON_TextLog& text_log) const;
57};
58
59
60#if defined(ON_DLL_TEMPLATE)
61
62// This stuff is here because of a limitation in the way Microsoft
63// handles templates and DLLs. See Microsoft's knowledge base
64// article ID Q168958 for details.
65#pragma warning( push )
66#pragma warning( disable : 4231 )
67ON_DLL_TEMPLATE template class ON_CLASS ON_ClassArray<ON_PlugInRef>;
68#pragma warning( pop )
69#endif
70
71#endif
72
Definition opennurbs_archive.h:152
Definition opennurbs_array.h:760
Definition opennurbs_pluginlist.h:27
ON_wString m_developer_fax
Definition opennurbs_pluginlist.h:49
ON_wString m_plugin_name
Definition opennurbs_pluginlist.h:37
ON_wString m_developer_country
Definition opennurbs_pluginlist.h:44
ON_wString m_developer_phone
Definition opennurbs_pluginlist.h:45
ON_wString m_developer_updateurl
Definition opennurbs_pluginlist.h:48
ON_wString m_developer_address
Definition opennurbs_pluginlist.h:43
ON_wString m_developer_organization
Definition opennurbs_pluginlist.h:42
ON_wString m_developer_website
Definition opennurbs_pluginlist.h:47
int m_plugin_sdk_version
Definition opennurbs_pluginlist.h:35
int m_plugin_sdk_service_release
Definition opennurbs_pluginlist.h:36
int m_plugin_type
Definition opennurbs_pluginlist.h:33
ON_UUID m_plugin_id
Definition opennurbs_pluginlist.h:32
ON_wString m_developer_email
Definition opennurbs_pluginlist.h:46
ON_wString m_plugin_version
Definition opennurbs_pluginlist.h:38
int m_plugin_platform
Definition opennurbs_pluginlist.h:34
ON_wString m_plugin_filename
Definition opennurbs_pluginlist.h:39
Definition opennurbs_textlog.h:20
Definition opennurbs_uuid.h:31
Definition opennurbs_string.h:392
#define ON_CLASS
Definition opennurbs_defines.h:91