summaryrefslogtreecommitdiff
path: root/rbutil/rbutilApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilApp.h')
-rw-r--r--rbutil/rbutilApp.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/rbutil/rbutilApp.h b/rbutil/rbutilApp.h
deleted file mode 100644
index b20e39eb90..0000000000
--- a/rbutil/rbutilApp.h
+++ /dev/null
@@ -1,53 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * Module: rbutil
9 * File: rbutilApp.h
10 *
11 * Copyright (C) 2005 Christi Alice Scarborough
12 *
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#include <wx/wxprec.h>
22#ifdef __BORLANDC__
23 #pragma hdrstop
24#endif
25#ifndef WX_PRECOMP
26 #include <wx/wx.h>
27#endif
28
29#include <wx/msgdlg.h>
30#include <wx/config.h>
31#include <wx/confbase.h>
32#include <wx/fileconf.h>
33#include <wx/string.h>
34#include <wx/wfstream.h>
35#include <wx/fs_inet.h>
36#include <wx/fs_zip.h>
37#include <wx/stdpaths.h>
38
39#include "rbutilFrm.h"
40#include "rbutil.h"
41
42class rbutilFrmApp:public wxApp
43{
44public:
45 bool OnInit();
46 int OnExit();
47 bool ReadGlobalConfig(rbutilFrm* myFrame);
48 void ReadUserConfig(void);
49 void WriteUserConfig(void);
50
51};
52
53