~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/src/dlgabout.h

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::BlocksĀ 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
 
3
 * http://www.gnu.org/licenses/gpl-3.0.html
 
4
 */
 
5
 
 
6
#ifndef DLGABOUT_H
 
7
#define DLGABOUT_H
 
8
 
 
9
#include "scrollingdialog.h" // inheriting class's header file
 
10
 
 
11
class wxWindow;
 
12
 
 
13
class dlgAbout : public wxScrollingDialog
 
14
{
 
15
    public:
 
16
        // class constructor
 
17
        dlgAbout(wxWindow* parent);
 
18
        // class destructor
 
19
        ~dlgAbout();
 
20
};
 
21
 
 
22
#endif // DLGABOUT_H