Loading [MathJax]/extensions/tex2jax.js
Mesh Oriented datABase  (version 5.5.1)
An array-based unstructured mesh library
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NCWriteEuler.hpp
Go to the documentation of this file.
1 /* 2  * NCWriteEuler.hpp 3  * 4  * nc write helper for euler type data (CAM) 5  * Created on: Mar 28, 2014 6  * 7  */ 8  9 #ifndef NCWRITEEULER_HPP_ 10 #define NCWRITEEULER_HPP_ 11  12 #include "NCWriteHelper.hpp" 13  14 namespace moab 15 { 16  17 class NCWriteEuler : public ScdNCWriteHelper 18 { 19  public: 20  NCWriteEuler( WriteNC* writeNC, int fileId, const FileOptions& opts, EntityHandle fileSet ) 21  : ScdNCWriteHelper( writeNC, fileId, opts, fileSet ) 22  { 23  } 24  25  virtual ~NCWriteEuler(); 26 }; 27  28 } // namespace moab 29  30 #endif