~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to include/gewoopi/core/fwd.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
 
// fwd.h - this file is part of the gewoopi game engine
 
2
// core/fwd.hpp - this file is part of the gewoopi game engine
3
3
// (c) copyright 2009 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
 
#ifndef CORE_FWD_H_
8
 
#define CORE_FWD_H_
9
 
 
10
 
#include "../utilities/fwd_default.h"
 
7
/*!
 
8
 * @file
 
9
 * @brief
 
10
 * @details
 
11
 * @author Thomas Geymayer <tomgey@gmail.com>
 
12
 * @date Date of Creation: 05.07.2009
 
13
 */
 
14
 
 
15
#ifndef CORE_FWD_HPP_
 
16
#define CORE_FWD_HPP_
 
17
 
 
18
#include "../utilities/fwd_default.hpp"
11
19
 
12
20
namespace gewoopi
13
21
{
 
22
 
 
23
//------------------------------------------------------------------------------
 
24
///
 
25
/// @brief The Application class and basic types can be found in this namespace
 
26
///
 
27
 
14
28
namespace core
15
29
{
16
30
 
17
31
  class Application;
18
32
  DEF_SMART_PTR(Application);
19
33
 
20
 
  /// TODO (marked to remove)
21
 
  /*
22
 
  enum EventType
23
 
  {
24
 
    UNKNOWN,
25
 
    SYSTEM,
26
 
    KEY_CHANGED,
27
 
    AXIS_MOTION
28
 
  };
29
 
 
30
 
  class Event;
31
 
  class EventInput;
32
 
  class EventManager;
33
 
 
34
 
  DEF_SMART_PTR(EventManager);*/
35
 
 
36
34
} // namespace core
37
35
} // namespace gewoopi
38
36
 
39
 
#endif /* CORE_FWD_H_ */
 
37
#endif /* CORE_FWD_HPP_ */