![]() |
Mesh Oriented datABase
(version 5.4.1)
Array-based unstructured mesh datastructure
|
00001 /*
00002 * NCWriteEuler.hpp
00003 *
00004 * nc write helper for euler type data (CAM)
00005 * Created on: Mar 28, 2014
00006 *
00007 */
00008
00009 #ifndef NCWRITEEULER_HPP_
00010 #define NCWRITEEULER_HPP_
00011
00012 #include "NCWriteHelper.hpp"
00013
00014 namespace moab
00015 {
00016
00017 class NCWriteEuler : public ScdNCWriteHelper
00018 {
00019 public:
00020 NCWriteEuler( WriteNC* writeNC, int fileId, const FileOptions& opts, EntityHandle fileSet )
00021 : ScdNCWriteHelper( writeNC, fileId, opts, fileSet )
00022 {
00023 }
00024
00025 virtual ~NCWriteEuler();
00026 };
00027
00028 } // namespace moab
00029
00030 #endif