Go to the documentation of this file.00001 #ifndef CUBIT_COMPAT_HPP
00002 #define CUBIT_COMPAT_HPP
00003
00004 #include "CubitDefines.h"
00005
00006 class CubitString;
00007 class RefEntity;
00008 template <typename T> class DLIList;
00009
00010 CubitStatus
00011 CubitCompat_import_solid_model( const char* file_name,
00012 const char* file_type,
00013 const char* logfile_name = NULL,
00014 CubitBoolean heal_step = CUBIT_TRUE,
00015 CubitBoolean import_bodies = CUBIT_TRUE,
00016 CubitBoolean import_surfaces = CUBIT_TRUE,
00017 CubitBoolean import_curves = CUBIT_TRUE,
00018 CubitBoolean import_vertices = CUBIT_TRUE,
00019 CubitBoolean free_surfaces = CUBIT_TRUE,
00020 DLIList<RefEntity*> *imported_entities = NULL);
00021
00022 CubitStatus
00023 CubitCompat_export_solid_model( DLIList<RefEntity*>& ref_entity_list,
00024 const char* filename,
00025 const char * filetype,
00026 int &num_ents_exported,
00027 const CubitString &cubit_version,
00028 const char* logfile_name = NULL );
00029
00030 #endif