Branch data Line data Source code
1 : : #ifndef CUBIT_COMPAT_H
2 : : #define CUBIT_COMPAT_H
3 : :
4 : : #ifdef __cplusplus
5 : :
6 : : #include "CubitString.hpp"
7 : :
8 : 1876 : struct ModelImportOptions
9 : : {
10 : : //Acis options
11 : : unsigned short heal_step : 1;
12 : : unsigned short print_results : 1;
13 : : unsigned short import_bodies : 1;
14 : : unsigned short import_surfaces : 1;
15 : : unsigned short import_curves : 1;
16 : : unsigned short import_vertices : 1;
17 : : unsigned short free_surfaces : 1;
18 : : unsigned short merge_globally : 1;
19 : :
20 : : //Granite option
21 : : unsigned short no_assembly_level_features : 1;
22 : :
23 : : //Granite, Acis option
24 : : CubitString logfile_name;
25 : : };
26 : : #endif
27 : :
28 : : #endif /* CUBIT_COMPAT_H */
|