summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kioslave/slave.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:06:29 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:06:29 -0600
commitc0b24fe164924298d7e6ae33964b3c65fadbcba3 (patch)
tree2ba50375d78b077b266b224e4413150ef3e60a15 /languages/cpp/app_templates/kioslave/slave.cpp
parent33d15e862e09fbcbb05e209f832414bd8a01291e (diff)
downloadtdevelop-c0b24fe164924298d7e6ae33964b3c65fadbcba3.tar.gz
tdevelop-c0b24fe164924298d7e6ae33964b3c65fadbcba3.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'languages/cpp/app_templates/kioslave/slave.cpp')
-rw-r--r--languages/cpp/app_templates/kioslave/slave.cpp88
1 files changed, 0 insertions, 88 deletions
diff --git a/languages/cpp/app_templates/kioslave/slave.cpp b/languages/cpp/app_templates/kioslave/slave.cpp
deleted file mode 100644
index 3c780e7f..00000000
--- a/languages/cpp/app_templates/kioslave/slave.cpp
+++ /dev/null
@@ -1,88 +0,0 @@
-
-#include <tqcstring.h>
-#include <tqsocket.h>
-#include <tqdatetime.h>
-#include <tqbitarray.h>
-
-#include <stdlib.h>
-#include <math.h>
-#include <unistd.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <netdb.h>
-
-#include <kapplication.h>
-#include <kdebug.h>
-#include <kmessagebox.h>
-#include <kinstance.h>
-#include <kglobal.h>
-#include <kstandarddirs.h>
-#include <klocale.h>
-#include <kurl.h>
-#include <ksock.h>
-
-#include "%{APPNAMELC}.h"
-
-using namespace TDEIO;
-
-
-kio_%{APPNAMELC}Protocol::kio_%{APPNAMELC}Protocol(const TQCString &pool_socket, const TQCString &app_socket)
- : SlaveBase("kio_%{APPNAMELC}", pool_socket, app_socket)
-{
- kdDebug() << "kio_%{APPNAMELC}Protocol::kio_%{APPNAMELC}Protocol()" << endl;
-}
-
-
-kio_%{APPNAMELC}Protocol::~kio_%{APPNAMELC}Protocol()
-{
- kdDebug() << "kio_%{APPNAMELC}Protocol::~kio_%{APPNAMELC}Protocol()" << endl;
-}
-
-
-void kio_%{APPNAMELC}Protocol::get(const KURL& url )
-{
- kdDebug() << "kio_%{APPNAMELC}::get(const KURL& url)" << endl ;
-
- kdDebug() << "Seconds: " << url.query() << endl;
- TQString remoteServer = url.host();
- int remotePort = url.port();
- kdDebug() << "myURL: " << url.prettyURL() << endl;
-
- infoMessage(i18n("Looking for %1...").arg( remoteServer ) );
- // Send the mimeType as soon as it is known
- mimeType("text/plain");
- // Send the data
- TQString theData = "This is a test of kio_%{APPNAMELC}";
- data(TQCString(theData.local8Bit()));
- data(TQByteArray()); // empty array means we're done sending the data
- finished();
-}
-
-
-void kio_%{APPNAMELC}Protocol::mimetype(const KURL & /*url*/)
-{
- mimeType("text/plain");
- finished();
-}
-
-
-extern "C"
-{
- int kdemain(int argc, char **argv)
- {
- TDEInstance instance( "kio_%{APPNAMELC}" );
-
- kdDebug(7101) << "*** Starting kio_%{APPNAMELC} " << endl;
-
- if (argc != 4) {
- kdDebug(7101) << "Usage: kio_%{APPNAMELC} protocol domain-socket1 domain-socket2" << endl;
- exit(-1);
- }
-
- kio_%{APPNAMELC}Protocol slave(argv[2], argv[3]);
- slave.dispatchLoop();
-
- kdDebug(7101) << "*** kio_%{APPNAMELC} Done" << endl;
- return 0;
- }
-}