DBus-1-TQt  1.0
tqdbusmessage_p.h
Go to the documentation of this file.
00001 /* qdbusmessage.h TQT_DBusMessage private object
00002  *
00003  * Copyright (C) 2005 Harald Fernengel <harry@kdevelop.org>
00004  * Copyright (C) 2005 Kevin Krammer <kevin.krammer@gmx.at>
00005  *
00006  * Licensed under the Academic Free License version 2.1
00007  *
00008  * This program is free software; you can redistribute it and/or modify
00009  * it under the terms of the GNU General Public License as published by
00010  * the Free Software Foundation; either version 2 of the License, or
00011  * (at your option) any later version.
00012  *
00013  * This program is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016  * GNU General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU General Public License
00019  * along with this program; if not, write to the Free Software
00020  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
00021  * USA.
00022  *
00023  */
00024 
00025 #ifndef TQDBUSMESSAGE_P_H
00026 #define TQDBUSMESSAGE_P_H
00027 
00028 #include <tqstring.h>
00029 
00030 #include "tqdbusatomic.h"
00031 #include "tqdbuserror.h"
00032 
00033 struct DBusMessage;
00034 
00035 class TQT_DBusMessagePrivate
00036 {
00037 public:
00038     TQT_DBusMessagePrivate(TQT_DBusMessage *qq);
00039     ~TQT_DBusMessagePrivate();
00040 
00041     TQString path, interface, member, service, sender;
00042     TQT_DBusError error;
00043     DBusMessage *msg;
00044     DBusMessage *reply;
00045     TQT_DBusMessage *q;
00046     int type;
00047     int timeout;
00048     // FIXME-QT4 TQAtomic ref;
00049     Atomic ref;
00050 };
00051 
00052 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines