From f5ed43873592ae76ec90d50c0fa1efb39da61300 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Tue, 20 Jan 2015 08:46:25 -0500 Subject: [PATCH] gui: Move the queue TreeModel class into the gui code Signed-off-by: Anna Schumaker --- {lib => gui}/model.cpp | 2 +- include/{lib => gui}/model.h | 6 +++--- include/gui/tabs.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename {lib => gui}/model.cpp (99%) rename include/{lib => gui}/model.h (92%) diff --git a/lib/model.cpp b/gui/model.cpp similarity index 99% rename from lib/model.cpp rename to gui/model.cpp index 2379be39..09194c6b 100644 --- a/lib/model.cpp +++ b/gui/model.cpp @@ -5,7 +5,7 @@ * https://git.gnome.org/browse/gtkmm-documentation/tree/examples/others/treemodelcustom */ #include -#include +#include #include diff --git a/include/lib/model.h b/include/gui/model.h similarity index 92% rename from include/lib/model.h rename to include/gui/model.h index fbd243ed..f7c36980 100644 --- a/include/lib/model.h +++ b/include/gui/model.h @@ -1,8 +1,8 @@ /* * Copyright 2014 (c) Anna Schumaker. */ -#ifndef OCARINA_LIB_MODEL_H -#define OCARINA_LIB_MODEL_H +#ifndef OCARINA_GUI_MODEL_H +#define OCARINA_GUI_MODEL_H #include #include @@ -38,4 +38,4 @@ public: unsigned int path_to_id(const Gtk::TreePath &) const; }; -#endif /* OCARINA_LIB_MODEL_H */ +#endif /* OCARINA_GUI_MODEL_H */ diff --git a/include/gui/tabs.h b/include/gui/tabs.h index cc7ab66f..a0db1069 100644 --- a/include/gui/tabs.h +++ b/include/gui/tabs.h @@ -5,7 +5,7 @@ #define OCARINA_TABS_H #include -#include +#include #include #include #include