MeshKit
1.0
|
00001 00007 #include "meshkit/MKCore.hpp" 00008 #include "meshkit/MeshOp.hpp" 00009 #include "meshkit/ModelEnt.hpp" 00010 #include "meshkit/PostBL.hpp" 00011 #include "TestUtil.hpp" 00012 //#include "meshkit/CAMALTetMesher.hpp" 00013 #include "meshkit/SizingFunction.hpp" 00014 #include "meshkit/CopyGeom.hpp" 00015 00016 using namespace MeshKit; 00017 00018 MKCore *mk; 00019 00020 void test_PostBL_default(int argc, char **argv); 00021 00022 int main(int argc, char *argv[]) 00023 { 00024 mk = new MKCore(); 00026 test_PostBL_default(argc, argv); 00027 delete mk; 00028 return 0; 00029 } 00030 00031 void test_PostBL_default(int argc, char **argv) 00032 { 00034 MEntVector volso; 00035 00037 PostBL *ag = (PostBL*) mk->construct_meshop("PostBL", volso); 00038 ag->set_name("PostBL"); 00039 00041 ag->PrepareIO(argc, argv, TestDir); 00042 ag->setup_this(); 00043 ag->execute_this(); 00044 00045 delete ag; 00046 } 00047 00048 00049