1 /*
2  * NCWriteFV.hpp
3  *
4  *  nc write helper for FV type data (CAM)
5  *  Created on: April 9, 2014
6  *
7  */
8 
9 #ifndef NCWRITEFV_HPP_
10 #define NCWRITEFV_HPP_
11 
12 #include "NCWriteHelper.hpp"
13 
14 namespace moab {
15 
16 class NCWriteFV: public ScdNCWriteHelper
17 {
18 public:
NCWriteFV(WriteNC * writeNC,int fileId,const FileOptions & opts,EntityHandle fileSet)19   NCWriteFV(WriteNC* writeNC, int fileId, const FileOptions& opts, EntityHandle fileSet)
20 : ScdNCWriteHelper(writeNC, fileId, opts, fileSet) {}
21 
22   virtual ~NCWriteFV();
23 };
24 
25 } // namespace moab
26 
27 #endif // NCWRITEFV_HPP_
28