Serializers.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
3 
4  This file is part of the TerraLib - a Framework for building GIS enabled
5  applications.
6 
7  TerraLib is free software: you can redistribute it and/or modify
8  it under the terms of the GNU Lesser General Public License as published by
9  the Free Software Foundation, either version 3 of the License,
10  or (at your option) any later version.
11 
12  TerraLib is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU Lesser General Public License for more details.
16 
17  You should have received a copy of the GNU Lesser General Public License
18  along with TerraLib. See COPYING. If not, write to
19  TerraLib Team at <terralib-team@terralib.org>.
20  */
21 
22 /*!
23  \file terralib/core/plugin/Serializers.h
24 
25  \brief General utilities for serializing plugin information.
26 
27  \author Gilberto Ribeiro de Queiroz
28  \author Matheus Cavassan Zaglia
29  */
30 
31 #ifndef __TERRALIB_CORE_PLUGIN_SERIALIZERS_H__
32 #define __TERRALIB_CORE_PLUGIN_SERIALIZERS_H__
33 
34 // TerraLib
35 #include "../Config.h"
36 #include "PluginInfo.h"
37 
38 namespace te
39 {
40  namespace core
41  {
42  /*!
43  \brief A plugin finder that search for plugins in some special directories
44  defined by compile time macros.
45 
46  \exception InvalidArgumentException if the given file_name doesn't exist
47  */
48  TECOREEXPORT PluginInfo
49  JSONPluginInfoSerializer(const std::string& file_name);
50 
51  } // end namespace core
52 } // end namespace te
53 
54 #endif // __TERRALIB_CORE_PLUGIN_SERIALIZERS_H__
TECOREEXPORT PluginInfo JSONPluginInfoSerializer(const std::string &file_name)
A plugin finder that search for plugins in some special directories defined by compile time macros...
#define TECOREEXPORT
Definition: Config.h:40
URI C++ Library.
The basic information about a plugin.