aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger/debuggermain.cpp
diff options
context:
space:
mode:
authorGravatar chudy@google.com <chudy@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-07 16:12:23 +0000
committerGravatar chudy@google.com <chudy@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-07 16:12:23 +0000
commit607357fde8a9c4c70549d4223e0bd1181b012e0e (patch)
tree6a470db5cdf3652b0680b237a1dcd9371638fe61 /debugger/debuggermain.cpp
parent9ddef9b6807101e989e18ca8da7737d81f412512 (diff)
Refactoring into a public facing facing SkDebugger class first pass.
Review URL: https://codereview.appspot.com/6450096 git-svn-id: http://skia.googlecode.com/svn/trunk@4986 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'debugger/debuggermain.cpp')
-rw-r--r--debugger/debuggermain.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/debugger/debuggermain.cpp b/debugger/debuggermain.cpp
new file mode 100644
index 0000000000..86a45748a9
--- /dev/null
+++ b/debugger/debuggermain.cpp
@@ -0,0 +1,17 @@
+
+/*
+ * Copyright 2012 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkDebuggerGUI.h"
+#include <QApplication>
+
+int main(int argc, char *argv[]) {
+ QApplication a(argc, argv);
+ SkDebuggerGUI w;
+ w.show();
+ return a.exec();
+}