~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to include/gewoopi/input/manager.hpp

  • Committer: Thomas Geymayer
  • Date: 2009-12-31 15:38:07 UTC
  • Revision ID: tomgey@gmail.com-20091231153807-9833458pgys6ia7j
Cleaned up and improved documentation:
 - Different doxyfiles for developers and users
 - Renamed remaining .h to .hpp
 - Relative paths in doxyfiles instead of absolute

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//------------------------------------------------------------------------------
2
 
// manager.h - this file is part of the gewoopi game engine
 
2
// input/manager.hpp - this file is part of the gewoopi game engine
3
3
// (c) copyright 2008 Thomas Geymayer <tomgey@gmail.com>
4
 
// For conditions of distribution and use, see copyright notice in gewoopi.h
 
4
// For conditions of distribution and use, see copyright notice in gewoopi.hpp
5
5
//------------------------------------------------------------------------------
6
6
 
7
7
/*!
8
 
 * @file: input/manager.h
 
8
 * @file
9
9
 * @brief
10
10
 * @details
11
11
 * @author Thomas Geymayer <tomgey@gmail.com>
12
12
 * @date Date of Creation: 05.07.2009
13
13
 */
14
14
 
15
 
#ifndef INPUT_MANAGER_H_
16
 
#define INPUT_MANAGER_H_
 
15
#ifndef INPUT_MANAGER_HPP_
 
16
#define INPUT_MANAGER_HPP_
17
17
 
18
18
#include <vector>
19
19
#include <map>
21
21
#include <boost/bind.hpp>
22
22
#include <boost/signals.hpp>
23
23
 
24
 
#include "../core/fwd.h"
25
 
#include "fwd.h"
 
24
#include "../core/fwd.hpp"
 
25
#include "fwd.hpp"
26
26
#include "physical_button.hpp"
27
 
#include "button.h"
28
 
#include "device.h"
 
27
#include "button.hpp"
 
28
#include "device.hpp"
29
29
 
30
30
namespace gewoopi
31
31
{
180
180
} // namespace input
181
181
} // namespace gewoopi
182
182
 
183
 
#endif /* INPUT_MANAGER_H_ */
 
183
#endif /* INPUT_MANAGER_HPP_ */