summaryrefslogtreecommitdiffstats
path: root/src/ganv_bench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ganv_bench.cpp')
-rw-r--r--src/ganv_bench.cpp26
1 files changed, 20 insertions, 6 deletions
diff --git a/src/ganv_bench.cpp b/src/ganv_bench.cpp
index 5f723b3..1ad00f2 100644
--- a/src/ganv_bench.cpp
+++ b/src/ganv_bench.cpp
@@ -13,16 +13,30 @@
* with Ganv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <glibmm.h>
+#include "ganv/Canvas.hpp"
+#include "ganv/Circle.hpp"
+#include "ganv/Edge.hpp"
+#include "ganv/Module.hpp"
+#include "ganv/Port.hpp"
+
+#include <glibmm/main.h>
+#include <gtkmm/layout.h>
#include <gtkmm/main.h>
+#include <gtkmm/object.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/window.h>
+#include <sigc++/functors/ptr_fun.h>
+
+#include <algorithm>
+#include <cstdio>
+#include <cstdlib>
+#include <ctime>
+#include <iosfwd>
+#include <vector>
-#include "ganv/ganv.hpp"
+namespace Ganv {
+class Node;
+}
using namespace std;
using namespace Ganv;