/////////////////////////////////////////////////////////////////////////////// // MuldeR's Utilities for Qt // Copyright (C) 2004-2014 LoRd_MuldeR // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // // http://www.gnu.org/licenses/lgpl-2.1.txt ////////////////////////////////////////////////////////////////////////////////// #pragma once #include namespace MUtils { typedef enum { IPC_RET_SUCCESS_MASTER = 0, IPC_RET_SUCCESS_SLAVE = 1, IPC_RET_ALREADY_INITIALIZED = 2, IPC_RET_FAILURE = 3 } ipc_result_t; class MUTILS_API IPCChannel_Private; class MUTILS_API IPCChannel { public: IPCChannel(const QString &applicationId, const QString &channelId); ~IPCChannel(void); int initialize(void); bool send(const unsigned int &command, const char *const message); bool read(unsigned int &command, char *const message, const size_t &buffSize); private: IPCChannel(const IPCChannel&) : p(NULL) {} IPCChannel &operator=(const IPCChannel&) { return *this; } IPCChannel_Private *const p; const QString m_applicationId; const QString m_channelId; }; }