VPTissue Reference Manual
FileConverterFormats.h
Go to the documentation of this file.
1 #ifndef SIMPT_SHELL_CONVERTER_FORMATS_H_INCLUDED
2 #define SIMPT_SHELL_CONVERTER_FORMATS_H_INCLUDED
3 /*
4  * Copyright 2011-2016 Universiteit Antwerpen
5  *
6  * Licensed under the EUPL, Version 1.1 or as soon they will be approved by
7  * the European Commission - subsequent versions of the EUPL (the "Licence");
8  * You may not use this work except in compliance with the Licence.
9  * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl5
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the Licence is distributed on an "AS IS" basis,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the Licence for the specific language governing
15  * permissions and limitations under the Licence.
16  */
22 #include "BitmapFormat.h"
23 #include "IConverterFormat.h"
24 #include "ExporterFormat.h"
25 #include "CsvFormat.h"
26 #include "CsvGzFormat.h"
27 #include "Hdf5Format.h"
28 #include "PlyFormat.h"
29 #include "VectorFormat.h"
30 #include "XmlFormat.h"
31 #include "XmlGzFormat.h"
32 
33 namespace SimPT_Shell {
34 
39 {
40 public:
41  static std::vector<IConverterFormat*> GetFormats();
42  static std::vector<IConverterFormat*> GetConverterFormats();
43  static std::vector<IConverterFormat*> GetExportFormats();
44 
45 private:
46  static BitmapFormat g_bmp_format;
47  static CsvFormat g_csv_format;
48  static CsvGzFormat g_csv_gz_format;
49  static Hdf5Format g_hdf5_format;
50  static BitmapFormat g_jpeg_format;
51  static PlyFormat g_ply_format;
52  static VectorFormat g_pdf_format;
53  static BitmapFormat g_png_format;
54  static XmlFormat g_xml_format;
55  static XmlGzFormat g_xml_gz_format;
56 };
57 
58 } // namespace
59 
60 #endif // end_of_include_guard
Hdf5 converter format specifications.
Definition: Hdf5Format.h:31
Bundles file converter formats specifications.
CSV gzipped converter format specifications.
Definition: CsvGzFormat.h:31
Namespace for SimPT shell package.
Definition: Client.cpp:50
Interface of bitmap graphics converter format.
Interface of csv converter format.
PLY converter format specifications.
Definition: PlyFormat.h:31
Interface of File Converter Formats.
CSV converter format specifications.
Definition: CsvFormat.h:31
Bitmap graphics converter format specifications.
Definition: BitmapFormat.h:34
Interface for IConverterFormat.
Interface of PLY converter format.
Interface of csv gzipped converter format.
Vector graphics converter format specifications.
Definition: VectorFormat.h:33
Xml converter format specifications.
Definition: XmlFormat.h:31
Interface of Xml converter format.
Interface of vector graphics onverter format.
Interface of File Converter Formats.
Xml gezipped converter format specifications.
Definition: XmlGzFormat.h:31
Interface of Xml gzipped converter format.