Update include guard and added forward declaration
This commit is contained in:
parent
c79fb75a3b
commit
ccd408d988
1 changed files with 5 additions and 5 deletions
|
@ -19,15 +19,15 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
#ifndef __Clientmenu_hh
|
#ifndef _CLIENTMENU_HH_
|
||||||
#define __Clientmenu_hh
|
#define _CLIENTMENU_HH_
|
||||||
|
|
||||||
// forward declarations
|
// forward declarations
|
||||||
class Clientmenu;
|
class Clientmenu;
|
||||||
|
class Workspace;
|
||||||
|
|
||||||
#include "Basemenu.hh"
|
#include "Basemenu.hh"
|
||||||
#include "Workspace.hh"
|
|
||||||
#include "fluxbox.hh"
|
|
||||||
|
|
||||||
|
|
||||||
class Clientmenu : public Basemenu {
|
class Clientmenu : public Basemenu {
|
||||||
|
@ -45,5 +45,5 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // __Clientmenu_hh
|
#endif // _CLIENTMENU_HH_
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue