grim/gplate

testing jenkins

2013-06-22, Gary Kramlich
bbd7f5310eae
testing jenkins
/*
* GPlate - GObject based templating library
* Copyright (C) 2007-2012 Gary Kramlich <grim@reaperworld.com>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <gplate/gplate-function.h>
/******************************************************************************
* GPlateFunction API
*****************************************************************************/
GType
gplate_function_get_type(void) {
static GType type = 0;
if(type == 0) {
static const GTypeInfo info = {
sizeof(GPlateFunctionClass),
NULL,
NULL,
NULL,
NULL,
NULL,
sizeof(GPlateFunction),
0,
NULL,
};
type = g_type_register_static(G_TYPE_OBJECT,
"GPlateFunction",
&info, G_TYPE_FLAG_ABSTRACT);
}
return type;
}
/**
* gplate_function_evaluate:
* @function: The #GPlateFunction.
* @tplate: The #GPlateTemplate that @function is being evaluated for.
* @contents: The contents for the function to use.
*
* Evaluates @contents using @function for @tplate.
*
* Return Value: The evaluated output.
*/
gchar *
gplate_function_evaluate(GPlateFunction *function, GPlateTemplate *tplate,
const gchar *contents)
{
GPlateFunctionClass *klass = NULL;
g_return_val_if_fail(GPLATE_IS_FUNCTION(function), NULL);
klass = GPLATE_FUNCTION_GET_CLASS(function);
if(klass && klass->evaluate)
return klass->evaluate(function, tplate, contents);
return NULL;
}