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 #include "klocale.h"
00027
00028 void KLocalSocketPrivate::connectToPath(const QString &path, KLocalSocket::LocalSocketType aType,
00029 QAbstractSocket::OpenMode openMode)
00030 {
00031 emitError(QAbstractSocket::UnsupportedSocketOperationError, i18n("Operation not supported"));
00032 }
00033
00034 bool KLocalSocketServerPrivate::listen(const QString &path, KLocalSocket::LocalSocketType aType)
00035 {
00036 emitError(QAbstractSocket::UnsupportedSocketOperationError, i18n("Operation not supported"));
00037 return false;
00038 }
00039
00040 void KLocalSocketServerPrivate::close()
00041 {
00042 }
00043
00044 bool KLocalSocketServerPrivate::waitForNewConnection(int, bool *)
00045 {
00046 Q_ASSERT_X(false, "KLocalSocketServer::waitForNewConnection",
00047 "This function should never have been called!");
00048 return false;
00049 }
00050
00051 void KLocalSocketServerPrivate::_k_newConnectionActivity()
00052 {
00053 }