gplate/gplate.h
author Gary Kramlich <grim@reaperworld.com>
Sat Jul 03 23:24:33 2010 -0500 (22 months ago)
changeset 394 ad26d98e20e6
parent 291 310b912b92c7
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@50
     1
/*
grim@394
     2
 * Copyright (C) 2007-2010 Gary Kramlich <grim@reaperworld.com>
grim@50
     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@50
     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@50
    16
 */
grim@50
    17
#ifndef GPLATE_H
grim@107
    18
#define GPLATE_H
grim@50
    19
grim@50
    20
#include <glib.h>
grim@50
    21
grim@50
    22
#include <gplate/gplate-collection.h>
grim@178
    23
#include <gplate/gplate-config.h>
grim@121
    24
#include <gplate/gplate-errors.h>
grim@113
    25
#include <gplate/gplate-function.h>
grim@242
    26
#include <gplate/gplate-iterator.h>
grim@173
    27
#include <gplate/gplate-library.h>
grim@78
    28
#include <gplate/gplate-tag.h>
grim@50
    29
#include <gplate/gplate-template.h>
grim@291
    30
#include <gplate/gplate-util.h>
grim@50
    31
#include <gplate/gplate-variable.h>
grim@50
    32
grim@257
    33
#include <gplate/functions/gplate-for-function.h>
grim@253
    34
#include <gplate/functions/gplate-include-function.h>
grim@253
    35
#include <gplate/functions/gplate-noop-function.h>
grim@253
    36
#include <gplate/functions/gplate-print-function.h>
grim@253
    37
#include <gplate/functions/gplate-text-function.h>
grim@253
    38
grim@254
    39
#include <gplate/tags/gplate-code-tag.h>
grim@254
    40
#include <gplate/tags/gplate-comment-tag.h>
grim@254
    41
#include <gplate/tags/gplate-text-tag.h>
grim@254
    42
#include <gplate/tags/gplate-variable-tag.h>
grim@254
    43
grim@256
    44
#include <gplate/variables/gplate-dictionary-variable.h>
grim@279
    45
#include <gplate/variables/gplate-directory-variable.h>
grim@279
    46
#include <gplate/variables/gplate-file-variable.h>
grim@256
    47
#include <gplate/variables/gplate-object-variable.h>
grim@256
    48
grim@50
    49
#endif /* GPLATE_H */