Go to the documentation of this file.00001 #ifndef CUBIT_COMPAT_H
00002 #define CUBIT_COMPAT_H
00003
00004 #ifdef __cplusplus
00005
00006 #include "CubitString.hpp"
00007
00008 struct ModelImportOptions
00009 {
00010
00011 unsigned short heal_step : 1;
00012 unsigned short print_results : 1;
00013 unsigned short import_bodies : 1;
00014 unsigned short import_surfaces : 1;
00015 unsigned short import_curves : 1;
00016 unsigned short import_vertices : 1;
00017 unsigned short free_surfaces : 1;
00018 unsigned short merge_globally : 1;
00019
00020
00021 unsigned short no_assembly_level_features : 1;
00022
00023
00024 CubitString logfile_name;
00025 };
00026 #endif
00027
00028 #endif