| 16 * |
16 * |
| 17 * You should have received a copy of the GNU General Public License |
17 * You should have received a copy of the GNU General Public License |
| 18 * along with this program; if not, write to the Free Software |
18 * along with this program; if not, write to the Free Software |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 20 */ |
20 */ |
| |
21 |
| |
22 #ifndef _PURPLE_CONVERSATION_H_ |
| |
23 #define _PURPLE_CONVERSATION_H_ |
| 21 /** |
24 /** |
| 22 * SECTION:conversation |
25 * SECTION:conversation |
| 23 * @section_id: libpurple-conversation |
26 * @section_id: libpurple-conversation |
| 24 * @short_description: <filename>conversation.h</filename> |
27 * @short_description: <filename>conversation.h</filename> |
| 25 * @title: Conversation Base Class |
28 * @title: Conversation Base Class |
| 26 */ |
29 */ |
| 27 |
|
| 28 #ifndef _PURPLE_CONVERSATION_H_ |
|
| 29 #define _PURPLE_CONVERSATION_H_ |
|
| 30 |
30 |
| 31 #define PURPLE_TYPE_CONVERSATION (purple_conversation_get_type()) |
31 #define PURPLE_TYPE_CONVERSATION (purple_conversation_get_type()) |
| 32 #define PURPLE_CONVERSATION(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_CONVERSATION, PurpleConversation)) |
32 #define PURPLE_CONVERSATION(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_CONVERSATION, PurpleConversation)) |
| 33 #define PURPLE_CONVERSATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_CONVERSATION, PurpleConversationClass)) |
33 #define PURPLE_CONVERSATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_CONVERSATION, PurpleConversationClass)) |
| 34 #define PURPLE_IS_CONVERSATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_CONVERSATION)) |
34 #define PURPLE_IS_CONVERSATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_CONVERSATION)) |