OpenStructure
Loading...
Searching...
No Matches
map_io_dm3_handler.hh
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// This file is part of the OpenStructure project <www.openstructure.org>
3//
4// Copyright (C) 2008-2020 by the OpenStructure authors
5// Copyright (C) 2003-2010 by the IPLT authors
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License as published by the Free
9// Software Foundation; either version 3.0 of the License, or (at your option)
10// any later version.
11// This library is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
14// details.
15//
16// You should have received a copy of the GNU Lesser General Public License
17// along with this library; if not, write to the Free Software Foundation, Inc.,
18// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19//------------------------------------------------------------------------------
20#ifndef DX_IO_DM3_IO_PLUGIN_OST_HH
21#define DX_IO_DM3_IO_PLUGIN_OST_HH
22
23/*
24 Authors: Ansgar Philippsen, Andreas Schenk
25*/
26
27#include "map_io_handler.hh"
28
29namespace ost { namespace io {
30
32{
33 public:
34
35 DM3();
37};
38
40{
41 public:
45 virtual void Import(img::MapHandle& sh, const boost::filesystem::path& loc,const ImageFormatBase& formatstruct);
46 virtual void Import(img::MapHandle& sh, std::istream& loc, const ImageFormatBase& formatstruct);
47 virtual void Export(const img::MapHandle& sh, const boost::filesystem::path& loc,const ImageFormatBase& formatstruct) const;
48 virtual void Export(const img::MapHandle& sh, std::ostream& loc,const ImageFormatBase& formatstruct) const;
49 static bool MatchContent(unsigned char* header);
50 static bool MatchType(const ImageFormatBase& type);
51 static bool MatchSuffix(const String& loc);
52 static bool ProvidesImport() { return true; }
53 static bool ProvidesExport() { return false; }
54 static String GetFormatName() { return String("Dm3"); }
55 static String GetFormatDescription() {return String("Format used by Gatan Inc.'s Digital Micrograph software");}
56
57};
58
60
61}} // ns
62
63#endif
Manage shared instances of images.
static String FORMAT_STRING
static bool MatchType(const ImageFormatBase &type)
virtual void Export(const img::MapHandle &sh, const boost::filesystem::path &loc, const ImageFormatBase &formatstruct) const
virtual void Import(img::MapHandle &sh, std::istream &loc, const ImageFormatBase &formatstruct)
static bool MatchContent(unsigned char *header)
virtual void Export(const img::MapHandle &sh, std::ostream &loc, const ImageFormatBase &formatstruct) const
static bool MatchSuffix(const String &loc)
static String GetFormatDescription()
virtual void Import(img::MapHandle &sh, const boost::filesystem::path &loc, const ImageFormatBase &formatstruct)
Map IO handler to read/write Dm3 map files.
#define DLLEXPORT_OST_IO
std::string String
Definition base.hh:54
MapIOHandlerFactory< MapIODm3Handler > MapIODm3HandlerFactory
Definition base.dox:1