aboutsummaryrefslogtreecommitdiff
path: root/src/gatscon/mainwnd.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-05-16 20:51:20 +0000
committerMike Buland <eichlan@xagasoft.com>2011-05-16 20:51:20 +0000
commit02c60c6720f41bcfc367d02ae4c655b651642991 (patch)
treebbda9db56f71c846e5712bcbf44a52f475795f0a /src/gatscon/mainwnd.cpp
parent09e3102ffba4b9ee11d988f95c04d344790127db (diff)
downloadlibgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.gz
libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.bz2
libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.xz
libgats-02c60c6720f41bcfc367d02ae4c655b651642991.zip
Almost there! I'm adding a qtbenc-like program for gats, only cooler. It'll
really help us debug gats based protocols and look at gats files, and the like.
Diffstat (limited to 'src/gatscon/mainwnd.cpp')
-rw-r--r--src/gatscon/mainwnd.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/gatscon/mainwnd.cpp b/src/gatscon/mainwnd.cpp
new file mode 100644
index 0000000..c86e1c2
--- /dev/null
+++ b/src/gatscon/mainwnd.cpp
@@ -0,0 +1,25 @@
1#include "mainwnd.h"
2#include "clientwidget.h"
3
4MainWnd::MainWnd()
5{
6 setupUi( this );
7}
8
9MainWnd::~MainWnd()
10{
11}
12
13void MainWnd::connect()
14{
15 setCentralWidget( new ClientWidget( this ) );
16}
17
18void MainWnd::proxy()
19{
20}
21
22void MainWnd::open()
23{
24}
25