00001 /*************************************************************************** 00002 netgenreader.h - description 00003 ------------------- 00004 begin : Fri Dec 12 2003 00005 copyright : (C) 2003 by Roman Geus 00006 email : roman.geus@psi.ch 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef NETGENREADER_H 00019 #define NETGENREADER_H 00020 00021 #include "meshbuilder.h" 00022 00027 using namespace std; 00028 00029 class NetgenReader { 00030 public: 00031 ~NetgenReader(); 00033 NetgenReader(istream* istr, MeshBuilder* builder); 00035 void read(); 00036 private: // Private attributes 00038 istream* _istr; 00040 MeshBuilder* _builder; 00041 }; 00042 00043 #endif