chudy@google.com | 902ebe5 | 2012-06-29 14:21:22 +0000 | [diff] [blame] | 1 | |
2 | /* | ||||
3 | * Copyright 2012 Google Inc. | ||||
4 | * | ||||
5 | * Use of this source code is governed by a BSD-style license that can be | ||||
6 | * found in the LICENSE file. | ||||
7 | */ | ||||
8 | |||||
9 | #include "SkDebuggerGUI.h" | ||||
10 | #include <QApplication> | ||||
11 | |||||
12 | int main(int argc, char *argv[]) { | ||||
13 | QApplication a(argc, argv); | ||||
14 | SkDebuggerGUI w; | ||||
15 | w.show(); | ||||
16 | return a.exec(); | ||||
17 | } |