Main Page
Modules
Namespaces
Classes
Files
File List
File Members
Module.cpp
Go to the documentation of this file.
1
/* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2
3
This file is part of the TerraLib - a Framework for building GIS enabled applications.
4
5
TerraLib is free software: you can redistribute it and/or modify
6
it under the terms of the GNU Lesser General Public License as published by
7
the Free Software Foundation, either version 3 of the License,
8
or (at your option) any later version.
9
10
TerraLib is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
GNU Lesser General Public License for more details.
14
15
You should have received a copy of the GNU Lesser General Public License
16
along with TerraLib. See COPYING. If not, write to
17
TerraLib Team at <terralib-team@terralib.org>.
18
*/
19
20
/*!
21
\file terralib/annotationtext/Module.cpp
22
23
\brief This singleton defines the TerraLib Annotation Text module entry.
24
*/
25
26
// TerraLib
27
#include "../common/Logger.h"
28
#include "../common/TerraLib.h"
29
#include "../common/Translator.h"
30
#include "
Config.h
"
31
#include "
Module.h
"
32
33
const
te::at::Module
&
sm_module
=
te::at::Module::getInstance
();
34
35
te::at::Module::Module
()
36
{
37
TerraLib::Module
m = {
TE_ANNOTATIONTEXT_MODULE_NAME
,
38
te::at::Module::initialize
,
39
te::at::Module::finalize
40
};
41
42
// initialize TerraLib singleton
43
TerraLib::getInstance
().
add
(m);
44
}
45
46
te::at::Module::~Module
()
47
{
48
TerraLib::getInstance
().
remove
(
TE_ANNOTATIONTEXT_MODULE_NAME
);
49
}
50
51
void
te::at::Module::initialize
()
52
{
53
TE_LOG_TRACE
(
TE_TR
(
"TerraLib Annotation Text module initialized!"
));
54
}
55
56
void
te::at::Module::finalize
()
57
{
58
TE_LOG_TRACE
(
TE_TR
(
"TerraLib Annotation Text module finalized!"
));
59
}
60
TE_ANNOTATIONTEXT_MODULE_NAME
#define TE_ANNOTATIONTEXT_MODULE_NAME
Definition:
Config.h:29
TE_LOG_TRACE
#define TE_LOG_TRACE(msg)
Use this tag in order to log a message to a specified logger with the TRACE level.
Definition:
Logger.h:137
te::at::Module::initialize
static void initialize()
This is the startup function for the TerraLib Annotation Text module.
Definition:
Module.cpp:51
TE_TR
#define TE_TR(message)
It marks a string in order to get translated.
Definition:
Translator.h:346
te::at::Module::finalize
static void finalize()
This is the cleanup function for the TerraLib Annotation Text module.
Definition:
Module.cpp:56
te::at::Module::~Module
~Module()
Definition:
Module.cpp:46
Config.h
Configuration flags for the TerraLib Annotation Text module.
te::common::Singleton< Module >::getInstance
static Module & getInstance()
It returns a reference to the singleton instance.
TerraLib::remove
void remove(const std::string &moduleName)
It removes the module entry identified by the given name.
Definition:
TerraLib.cpp:101
sm_module
const te::addressgeocoding::Module & sm_module
Definition:
Module.cpp:33
TerraLib::add
void add(const Module &m)
It registers the module in the TerraLib Platform.
Definition:
TerraLib.cpp:95
te::at::Module::Module
Module()
The singleton constructor is not callable outside the class.
Definition:
Module.cpp:35
TerraLib::Module
This internal structure is used to model the basic information about a TerraLib module.
Definition:
TerraLib.h:97
Module.h
This singleton defines the TerraLib Annotation Text module entry.
te::at::Module
This singleton defines the TerraLib Annotation Text module entry.
Definition:
Module.h:41
git_master
terralib5
src
terralib
annotationtext
Module.cpp
Generated on Tue Jan 12 2016 08:40:52 for TerraLib by
1.8.9.1