diff options
author | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-10-20 05:43:46 +0300 |
---|---|---|
committer | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-10-20 05:43:46 +0300 |
commit | 94852abf14bf5f57dc6d3124372d8ab6316dab50 (patch) | |
tree | b07187d7662ebd8adf6ae23ef54d48336a70abe0 | |
parent | d1a6c9aab167d2d5b14acce4aeba1e02202ce1bd (diff) |
push client's missing files
-rw-r--r-- | client/client.pro | 4 | ||||
-rw-r--r-- | client/main.cpp | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/client/client.pro b/client/client.pro index ef28c1a..050e6b1 100644 --- a/client/client.pro +++ b/client/client.pro @@ -8,5 +8,5 @@ DEPENDPATH += . INCLUDEPATH += . # Input -HEADERS += dialog.h -SOURCES += dialog.cpp main.cpp +HEADERS += client.h proxy.h dialog.h +SOURCES += dialog.cpp main.cpp proxy.cpp diff --git a/client/main.cpp b/client/main.cpp index ab4d526..0c36979 100644 --- a/client/main.cpp +++ b/client/main.cpp @@ -1,5 +1,7 @@ #include <QApplication> +#include "client.h" +#include "proxy.h" #include "dialog.h" int main(int argc, char *argv[]) |