Cafu Engine
DialogPasteSpecial.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_PASTE_SPECIAL_HPP_INCLUDED
8 #define CAFU_DIALOG_PASTE_SPECIAL_HPP_INCLUDED
9 
10 #include "wx/wx.h"
11 
12 
13 class PasteSpecialDialogT : public wxDialog
14 {
15  public:
16 
18 
19  bool MakePastedElementsWellVisible() const;
20 
21 
22  private:
23 
24  wxRadioBox* m_PastePos;
25 };
26 
27 #endif
Definition: DialogPasteSpecial.hpp:13