MI - Fimex
MetGmCDMWriter.h
Go to the documentation of this file.
1 /*
2  * Fimex
3  *
4  * (C) Copyright 2011, met.no
5  *
6  * Project Info: https://wiki.met.no/fimex/start
7  *
8  * This library is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16  * License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21  * USA.
22  */
23 
24 #ifndef METGM_CDMWRITER_HPP
25 #define METGM_CDMWRITER_HPP
26 
27 // fimex
28 #include "fimex/CDMWriter.h"
29 
30 namespace MetNoFimex {
31 
32  /* forward declarations */
33  class MetGmCDMWriterImpl;
34  class CDMReader;
35 
36  class MetGmCDMWriter : public CDMWriter
37  {
38  public:
39  MetGmCDMWriter(boost::shared_ptr<CDMReader> cdmReader, const std::string& outputFile, const std::string& configFile = std::string());
41 
42  protected:
43  boost::shared_ptr<MetGmCDMWriterImpl> d_ptr;
44  };
45 
46 }
47 
48 #endif // METGM_CDMWRITER_HPP
Definition: CDMWriter.h:37
basic_string< char > string
boost::shared_ptr< CDMReader > cdmReader
Definition: CDMWriter.h:45
Definition: C_CDMReader.h:35
const std::string outputFile
Definition: CDMWriter.h:46
MetGmCDMWriter(boost::shared_ptr< CDMReader > cdmReader, const std::string &outputFile, const std::string &configFile=std::string())
boost::shared_ptr< MetGmCDMWriterImpl > d_ptr
Definition: MetGmCDMWriter.h:43
Definition: MetGmCDMWriter.h:36