-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathInit.hpp
54 lines (48 loc) · 2.08 KB
/
Init.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// -*- Mode:C++ -*-
/************************************************************************\
* *
* This file is part of Avango. *
* *
* Copyright 1997 - 2008 Fraunhofer-Gesellschaft zur Foerderung der *
* angewandten Forschung (FhG), Munich, Germany. *
* *
* Avango is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, version 3. *
* *
* Avango is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with Avango. If not, see <http://www.gnu.org/licenses/>. *
* *
* Avango is a trademark owned by FhG. *
* *
\************************************************************************/
#ifndef AVANGO_TOOLS_INIT_HPP
#define AVANGO_TOOLS_INIT_HPP
/**
* \file
* \ingroup av_tools
*/
#include <avango/Typed.h>
#include "windows_specific_tools.hpp"
namespace av
{
namespace tools
{
/**
* Initializes the Avango Tools library.
* Usage: \code av::tools::Init::initClass(); \endcode
*
* \ingroup av_tools
*/
class AV_TOOLS_DLL Init
{
AV_TYPED_DECLARE_ABSTRACT();
};
} // namespace tools
} // namespace av
#endif // AVANGO_TOOLS_INIT_HPP