#include <sprk_exchange.h>
Static Public Member Functions | |
static ExportACISOptionsKit | GetDefault () |
![]() | |
template<typename T > | |
static intptr_t | ClassID () |
Additional Inherited Members | |
![]() | |
enum | UpdateType { Synchronous, Asynchronous } |
The HPS::Exchange::ExportACISOptionsKit class is a user space object. It contains settings controlling how ACIS data is exported via the Exchange interface. Calling HPS::Exchange::ExportACISOptionsKit::GetDefault() will return an options kit with values found in here.
HPS::Exchange::ExportACISOptionsKit::ExportACISOptionsKit | ( | ) |
The default constructor creates an empty ExportACISOptionsKit object.
HPS::Exchange::ExportACISOptionsKit::ExportACISOptionsKit | ( | ExportACISOptionsKit const & | in_kit | ) |
The copy constructor creates a new ExportACISOptionsKit object that contains the same settings as the source ExportACISOptionsKit.
in_kit | The source ExportACISOptionsKit to copy. |
HPS::Exchange::ExportACISOptionsKit::ExportACISOptionsKit | ( | ExportACISOptionsKit && | in_that | ) |
The move constructor creates an ExportACISOptionsKit by transferring the underlying object of the rvalue reference to this ExportACISOptionsKit.
in_that | An rvalue reference to an ExportACISOptionsKit to take the underlying object from. |
|
virtual |
Indicates whether this ExportACISOptionsKit has any values set on it.
Reimplemented from HPS::Object.
bool HPS::Exchange::ExportACISOptionsKit::Equals | ( | ExportACISOptionsKit const & | in_kit | ) | const |
Check if the source ExportACISOptionsKit is equivalent to this ExportACISOptionsKit.
in_kit | The source ExportACISOptionsKit to compare to this ExportACISOptionsKit. |
|
static |
Creates an ExportACISOptionsKit which contains the default settings. The returned object will not necessarily have values set for every option, but it will have settings for those options where it is reasonable to have a default. These values will be used for import unless an option is overridden by the options passed to File::ExportACIS.
|
inlinevirtual |
This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.
Reimplemented from HPS::Object.
bool HPS::Exchange::ExportACISOptionsKit::operator!= | ( | ExportACISOptionsKit const & | in_kit | ) | const |
Check if the source ExportACISOptionsKit is not equivalent to this ExportACISOptionsKit.
in_kit | The source ExportACISOptionsKit to compare to this ExportACISOptionsKit. |
ExportACISOptionsKit& HPS::Exchange::ExportACISOptionsKit::operator= | ( | ExportACISOptionsKit const & | in_kit | ) |
Copies the source ExportACISOptionsKit into this ExportACISOptionsKit.
in_kit | The source ExportACISOptionsKit to copy. |
ExportACISOptionsKit& HPS::Exchange::ExportACISOptionsKit::operator= | ( | ExportACISOptionsKit && | in_that | ) |
The move assignment operator transfers the underlying object of the rvalue reference to this ExportACISOptionsKit.
in_that | An rvalue reference to an ExportACISOptionsKit to take the underlying object from. |
bool HPS::Exchange::ExportACISOptionsKit::operator== | ( | ExportACISOptionsKit const & | in_kit | ) | const |
Check if the source ExportACISOptionsKit is equivalent to this ExportACISOptionsKit.
in_kit | The source ExportACISOptionsKit to compare to this ExportACISOptionsKit. |
void HPS::Exchange::ExportACISOptionsKit::Set | ( | ExportACISOptionsKit const & | in_kit | ) |
Copies the source ExportACISOptionsKit into this ExportACISOptionsKit.
in_kit | The source ExportACISOptionsKit to copy. |
ExportACISOptionsKit& HPS::Exchange::ExportACISOptionsKit::SetBinary | ( | bool | in_state | ) |
Sets whether to write ACIS data in binary form. This corresponds to the value that will be passed to A3DRWParamsExportAcisData::m_bSaveAsBinary.
in_state | Whether to write ACIS data in binary form. |
ExportACISOptionsKit& HPS::Exchange::ExportACISOptionsKit::SetMillimeterUnits | ( | bool | in_state | ) |
Sets whether to write ACIS data in millimeter units instead of the native units of the CADModel. This corresponds to the value that will be passed to A3DRWParamsExportAcisData::m_bSaveAsMillimeter.
in_state | Whether to write ACIS data in millimeter units instead of the native units of the CADModel. |
void HPS::Exchange::ExportACISOptionsKit::Show | ( | ExportACISOptionsKit & | out_kit | ) | const |
Copies this ExportACISOptionsKit into the given ExportACISOptionsKit.
out_kit | The ExportACISOptionsKit to populate with the contents of this ExportACISOptionsKit. |
bool HPS::Exchange::ExportACISOptionsKit::ShowBinary | ( | bool & | out_state | ) | const |
Shows the binary export setting.
out_state | Whether to write ACIS data in binary form. |
bool HPS::Exchange::ExportACISOptionsKit::ShowMillimeterUnits | ( | bool & | out_state | ) | const |
Shows the millimeter unit export setting.
out_state | Whether to write ACIS data in millimeter units instead of the native units of the CADModel. |
ExportACISOptionsKit& HPS::Exchange::ExportACISOptionsKit::UnsetBinary | ( | ) |
Removes the binary export setting.
ExportACISOptionsKit& HPS::Exchange::ExportACISOptionsKit::UnsetEverything | ( | ) |
Removes all settings from this ExportACISOptionsKit.
ExportACISOptionsKit& HPS::Exchange::ExportACISOptionsKit::UnsetMillimeterUnits | ( | ) |
Removes the millimeter unit export setting.