Blame gdata/gdata-comment.c

Packit 4b6dd7
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
Packit 4b6dd7
/*
Packit 4b6dd7
 * GData Client
Packit 4b6dd7
 * Copyright (C) Philip Withnall 2011 <philip@tecnocode.co.uk>
Packit 4b6dd7
 *
Packit 4b6dd7
 * GData Client is free software; you can redistribute it and/or
Packit 4b6dd7
 * modify it under the terms of the GNU Lesser General Public
Packit 4b6dd7
 * License as published by the Free Software Foundation; either
Packit 4b6dd7
 * version 2.1 of the License, or (at your option) any later version.
Packit 4b6dd7
 *
Packit 4b6dd7
 * GData Client is distributed in the hope that it will be useful,
Packit 4b6dd7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 4b6dd7
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 4b6dd7
 * Lesser General Public License for more details.
Packit 4b6dd7
 *
Packit 4b6dd7
 * You should have received a copy of the GNU Lesser General Public
Packit 4b6dd7
 * License along with GData Client.  If not, see <http://www.gnu.org/licenses/>.
Packit 4b6dd7
 */
Packit 4b6dd7
Packit 4b6dd7
/**
Packit 4b6dd7
 * SECTION:gdata-comment
Packit 4b6dd7
 * @short_description: GData comment object
Packit 4b6dd7
 * @stability: Stable
Packit 4b6dd7
 * @include: gdata/gdata-comment.h
Packit 4b6dd7
 *
Packit 4b6dd7
 * #GDataComment is a subclass of #GDataEntry to represent a generic comment on an entry. It is returned by the methods implemented in the
Packit 4b6dd7
 * #GDataCommentable interface.
Packit 4b6dd7
 *
Packit 4b6dd7
 * Any class which implements #GDataCommentable should have its own concrete subclass of #GDataComment which provides service-specific functionality.
Packit 4b6dd7
 *
Packit 4b6dd7
 * All subclasses of #GDataComment should ensure that the body of a comment is accessible using gdata_entry_get_content(), and that each comment has
Packit 4b6dd7
 * at least one #GDataAuthor object representing the person who wrote the comment, accessible using gdata_entry_get_authors().
Packit 4b6dd7
 *
Packit 4b6dd7
 * Since: 0.10.0
Packit 4b6dd7
 */
Packit 4b6dd7
Packit 4b6dd7
#include <config.h>
Packit 4b6dd7
#include <glib.h>
Packit 4b6dd7
Packit 4b6dd7
#include "gdata-comment.h"
Packit 4b6dd7
Packit 4b6dd7
G_DEFINE_ABSTRACT_TYPE (GDataComment, gdata_comment, GDATA_TYPE_ENTRY)
Packit 4b6dd7
Packit 4b6dd7
static void
Packit 4b6dd7
gdata_comment_class_init (GDataCommentClass *klass)
Packit 4b6dd7
{
Packit 4b6dd7
	/* Nothing to see here */
Packit 4b6dd7
}
Packit 4b6dd7
Packit 4b6dd7
static void
Packit 4b6dd7
gdata_comment_init (GDataComment *self)
Packit 4b6dd7
{
Packit 4b6dd7
	/* Nothing to see here */
Packit 4b6dd7
}