~ubuntu-branches/ubuntu/trusty/manaplus/trusty

« back to all changes in this revision

Viewing changes to src/gui/debugwindow.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-10-07 10:26:14 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131007102614-tg2zjdz8vmtl6n7i
Tags: 1.3.9.29-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    friend class DebugWindow;
35
35
 
36
36
    public:
37
 
        explicit DebugTab(const Widget2 *const widget) :
38
 
            Container(widget)
39
 
        { }
40
 
 
41
37
        A_DELETE_COPY(DebugTab)
42
38
 
43
39
        void logic() override = 0;
45
41
        void resize(const int x, const int y)
46
42
        { setDimension(gcn::Rectangle(0, 0, x, y)); }
47
43
 
48
 
    private:
 
44
    protected:
 
45
        explicit DebugTab(const Widget2 *const widget) :
 
46
            Container(widget)
 
47
        { }
49
48
};
50
49
 
51
50
class MapDebugTab final : public DebugTab