"Fossies" - the Fresh Open Source Software Archive 
Member "fimex-1.4.1/src/coordSys/CoordSysBuilder.h" (30 Oct 2019, 1674 Bytes) of package /linux/privat/fimex-1.4.1.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "CoordSysBuilder.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 * Fimex, CoordSysBuilder.h
3 *
4 * (C) Copyright 2012, 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 * Created on: Mar 28, 2012
24 * Author: Heiko Klein
25 */
26
27 #ifndef COORDSYSBUILDER_H_
28 #define COORDSYSBUILDER_H_
29
30 #include "fimex/CDMReaderDecl.h"
31 #include "fimex/coordSys/CoordSysDecl.h"
32 #include "fimex/deprecated.h"
33
34 #include <memory>
35 #include <string>
36 #include <vector>
37
38 namespace MetNoFimex {
39
40 // forward decl
41 class CDM;
42
43 class CoordSysBuilder
44 {
45 public:
46 CoordSysBuilder() {};
47 virtual ~CoordSysBuilder() {};
48 virtual std::string getName() = 0;
49 virtual bool isMine(const CDM& cdm) = 0;
50 virtual CoordinateSystem_cp_v listCoordinateSystems(CDMReader_p reader) = 0;
51 virtual MIFI_DEPRECATED(CoordinateSystem_cp_v listCoordinateSystems(CDM& cdm)) = 0;
52 virtual void enhanceVectorProperties(CDMReader_p reader) = 0;
53 };
54
55 } /* namespace MetNoFimex */
56
57 #endif /* COORDSYSBUILDER_H_ */