Cafu Engine
DialogMapInfo.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_DIALOG_MAPINFO_HPP_INCLUDED
8 #define CAFU_DIALOG_MAPINFO_HPP_INCLUDED
9 
10 #include "wx/wx.h"
11 
12 
13 class MapDocumentT;
14 
15 
16 class MapInfoDialogT : public wxDialog
17 {
18  public:
19 
20  /// Constructor.
21  /// MapDoc is the document for which the info should be shown.
23 };
24 
25 #endif
This class represents a CaWE "map" document.
Definition: MapDocument.hpp:45
Definition: DialogMapInfo.hpp:16
MapInfoDialogT(MapDocumentT &MapDoc)
Constructor.
Definition: DialogMapInfo.cpp:27