[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r3163: Add a GliderProcess subclass of QProcess for interacting wit (vidalia/trunk/src/vidalia)
Author: edmanm
Date: 2008-09-29 21:26:06 -0400 (Mon, 29 Sep 2008)
New Revision: 3163
Added:
vidalia/trunk/src/vidalia/gliderprocess.cpp
vidalia/trunk/src/vidalia/gliderprocess.h
Modified:
vidalia/trunk/src/vidalia/CMakeLists.txt
Log:
Add a GliderProcess subclass of QProcess for interacting with the client-side
auto-update process.
Modified: vidalia/trunk/src/vidalia/CMakeLists.txt
===================================================================
--- vidalia/trunk/src/vidalia/CMakeLists.txt 2008-09-30 00:52:50 UTC (rev 3162)
+++ vidalia/trunk/src/vidalia/CMakeLists.txt 2008-09-30 01:26:06 UTC (rev 3163)
@@ -186,6 +186,7 @@
vmessagebox.cpp
helperprocess.cpp
controlpasswordinputdialog.cpp
+ gliderprocess.cpp
)
qt4_wrap_cpp(vidalia_SRCS
vidalia.h
@@ -194,6 +195,7 @@
vidaliawindow.h
vmessagebox.h
helperprocess.h
+ gliderprocess.h
controlpasswordinputdialog.h
)
Added: vidalia/trunk/src/vidalia/gliderprocess.cpp
===================================================================
--- vidalia/trunk/src/vidalia/gliderprocess.cpp (rev 0)
+++ vidalia/trunk/src/vidalia/gliderprocess.cpp 2008-09-30 01:26:06 UTC (rev 3163)
@@ -0,0 +1,18 @@
+/*
+** This file is part of Vidalia, and is subject to the license terms in the
+** LICENSE file, found in the top level directory of this distribution. If you
+** did not receive the LICENSE file with this file, you may obtain it from the
+** Vidalia source package distributed by the Vidalia Project at
+** http://www.vidalia-project.net/. No part of Vidalia, including this file,
+** may be copied, modified, propagated, or distributed except according to the
+** terms described in the LICENSE file.
+*/
+
+#include "gliderprocess.h"
+
+
+GliderProcess::GliderProcess(QObject *parent)
+ : QProcess(parent)
+{
+}
+
Added: vidalia/trunk/src/vidalia/gliderprocess.h
===================================================================
--- vidalia/trunk/src/vidalia/gliderprocess.h (rev 0)
+++ vidalia/trunk/src/vidalia/gliderprocess.h 2008-09-30 01:26:06 UTC (rev 3163)
@@ -0,0 +1,26 @@
+/*
+** This file is part of Vidalia, and is subject to the license terms in the
+** LICENSE file, found in the top level directory of this distribution. If you
+** did not receive the LICENSE file with this file, you may obtain it from the
+** Vidalia source package distributed by the Vidalia Project at
+** http://www.vidalia-project.net/. No part of Vidalia, including this file,
+** may be copied, modified, propagated, or distributed except according to the
+** terms described in the LICENSE file.
+*/
+
+#ifndef _GLIDERPROCESS_H
+#define _GLIDERPROCESS_H
+
+#include <QProcess>
+
+
+class GliderProcess : public QProcess
+{
+ Q_OBJECT
+
+public:
+ GliderProcess(QObject *parent = 0);
+};
+
+#endif
+