KDECore
klocalsocket_win.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "klocalsocket_p.h"
00025
00026 void KLocalSocketPrivate::connectToPath(const QString &path, KLocalSocket::LocalSocketType aType,
00027 QAbstractSocket::OpenMode openMode)
00028 {
00029 emitError(QAbstractSocket::UnsupportedSocketOperationError, "Operation not supported");
00030 }
00031
00032 bool KLocalSocketServerPrivate::listen(const QString &path, KLocalSocket::LocalSocketType aType)
00033 {
00034 emitError(QAbstractSocket::UnsupportedSocketOperationError, "Operation not supported");
00035 return false;
00036 }
00037
00038 void KLocalSocketServerPrivate::close()
00039 {
00040 }
00041
00042 bool KLocalSocketServerPrivate::waitForNewConnection(int, bool *)
00043 {
00044 Q_ASSERT_X(false, "KLocalSocketServer::waitForNewConnection",
00045 "This function should never have been called!");
00046 return false;
00047 }
00048
00049 void KLocalSocketServerPrivate::_k_newConnectionActivity()
00050 {
00051 }