gplate/tags/gplate-comment-tag.h
author Gary Kramlich <grim@reaperworld.com>
Sat Jul 03 23:24:33 2010 -0500 (22 months ago)
changeset 394 ad26d98e20e6
parent 254 9d61735c279b
permissions -rw-r--r--
Changed the license from gplv2 to gplv3
Updated copyrights to be 2007-2010 rather than 2007-2008 (since just about everything has been touched recently
Ignored the top level tests/ directory for now since that is slowly being replaced
grim@65
     1
/*
grim@394
     2
 * Copyright (C) 2007-2010 Gary Kramlich <grim@reaperworld.com>
grim@65
     3
 *
grim@394
     4
 * This program is free software: you can redistribute it and/or modify
grim@394
     5
 * it under the terms of the GNU General Public License as published by
grim@394
     6
 * the Free Software Foundation, either version 3 of the License, or
grim@394
     7
 * (at your option) any later version.
grim@65
     8
 *
grim@394
     9
 * This program is distributed in the hope that it will be useful,
grim@394
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
grim@394
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
grim@394
    12
 * GNU General Public License for more details.
grim@394
    13
 *
grim@394
    14
 * You should have received a copy of the GNU General Public License
grim@394
    15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
grim@65
    16
 */
grim@65
    17
#ifndef GPLATE_COMMENT_TAG_H
grim@65
    18
#define GPLATE_COMMENT_TAG_H
grim@65
    19
grim@65
    20
#include <gplate/gplate-tag.h>
grim@65
    21
grim@65
    22
#define GPLATE_TYPE_COMMENT_TAG				(gplate_comment_tag_get_gtype())
grim@65
    23
#define GPLATE_COMMENT_TAG(obj)				(G_TYPE_CHECK_INSTANCE_CAST((obj), GPLATE_TYPE_COMMENT_TAG, GPlateCommentTag))
grim@65
    24
#define GPLATE_COMMENT_TAG_CLASS(klass)		(G_TYPE_CHECK_CLASS_CAST((klass), GPLATE_TYPE_COMMENT_TAG, GPlateCommentTagClass))
grim@65
    25
#define GPLATE_IS_COMMENT_TAG(obj)			(G_TYPE_CHECK_INSTANCE_TYPE((obj), GPLATE_TYPE_COMMENT_TAG))
grim@65
    26
#define GPLATE_IS_COMMENT_TAG_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE((klass), GPLATE_TYPE_COMMENT_TAG))
grim@65
    27
#define GPLATE_COMMENT_TAG_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS((obj), GPLATE_TYPE_COMMENT_TAG, GPlateCommentTagClass))
grim@65
    28
grim@65
    29
typedef struct _GPlateCommentTag			GPlateCommentTag;
grim@65
    30
typedef struct _GPlateCommentTagClass		GPlateCommentTagClass;
grim@65
    31
grim@65
    32
struct _GPlateCommentTag {
grim@65
    33
	GPlateTag gparent;
grim@65
    34
grim@65
    35
	void (*_gplate_reserved1)(void);
grim@65
    36
	void (*_gplate_reserved2)(void);
grim@65
    37
	void (*_gplate_reserved3)(void);
grim@65
    38
	void (*_gplate_reserved4)(void);
grim@65
    39
};
grim@65
    40
grim@65
    41
struct _GPlateCommentTagClass {
grim@65
    42
	GPlateTagClass parent;
grim@65
    43
grim@65
    44
	void (*_gplate_reserved1)(void);
grim@65
    45
	void (*_gplate_reserved2)(void);
grim@65
    46
	void (*_gplate_reserved3)(void);
grim@65
    47
	void (*_gplate_reserved4)(void);
grim@65
    48
};
grim@65
    49
grim@65
    50
G_BEGIN_DECLS
grim@65
    51
grim@65
    52
GType gplate_comment_tag_get_gtype(void);
grim@65
    53
grim@65
    54
G_END_DECLS
grim@65
    55
grim@65
    56
#endif /* GPLATE_COMMENT_TAG_H */