00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 #ifndef _MISURFACEMESHCURVILINEAR_H 00024 #define _MISURFACEMESHCURVILINEAR_H 00025 00026 #ifdef _WIN32 00027 # pragma warning( push ) 00028 # pragma warning(disable:4250) 00029 #endif 00030 00031 #include <MeshVizXLM/mesh/geometry/MiGeometryIj.h> 00032 #include <MeshVizXLM/mesh/MiMeshIj.h> 00033 00053 class MiSurfaceMeshCurvilinear : virtual public MiMeshIj 00054 { 00055 public: 00059 virtual const MiGeometryIj& getGeometry() const = 0; 00060 00064 virtual const MiSurfaceMeshCurvilinear* getNewClone() const 00065 { 00066 throw MiAbstractMethodError("MiSurfaceMeshCurvilinear::getNewClone()"); 00067 } 00068 00069 00070 private: protected: 00074 virtual std::ostream& toStream(std::ostream& s) const 00075 { 00076 s << "#SurfaceMeshCurvilinear" << std::endl; 00077 s << getTopology() << std::endl; 00078 s << getGeometry() << std::endl; 00079 return s; 00080 } 00081 00082 }; 00083 00084 #ifdef _WIN32 00085 # pragma warning( pop ) 00086 #endif 00087 00088 #endif 00089 00090 00091