1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-21 12:27:27 +03:00

Massive header cleanup.

The main goal is to avoid including "gmenu2x.h" from headers.
But I did various other cleanups as well while I was at it.
This commit is contained in:
Maarten ter Huurne
2011-10-23 16:13:02 +02:00
parent 33e7f1ef56
commit e0e7e87ebc
24 changed files with 203 additions and 171 deletions
+8 -9
View File
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2006 by Massimiliano Torromeo *
* massimiliano.torromeo@gmail.com *
* Copyright (C) 2006 by Massimiliano Torromeo *
* massimiliano.torromeo@gmail.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
@@ -18,19 +18,18 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef DIRDIALOG_H_
#define DIRDIALOG_H_
#include <string>
#include "gmenu2x.h"
#ifndef DIRDIALOG_H
#define DIRDIALOG_H
#include "browsedialog.h"
#include <string>
class DirDialog : public BrowseDialog {
public:
DirDialog(GMenu2X *gmenu2x, const string &text, const string &dir="");
DirDialog(GMenu2X *gmenu2x, const std::string &text,
const std::string &dir="");
~DirDialog();
};
#endif /*INPUTDIALOG_H_*/
#endif // DIRDIALOG_H