X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fgraph_def.h;h=7c3e9feab9d52f4abfbb0cd53e5d9c9342f24efb;hb=49e41ab84a7719050ada26760b0184180f085b55;hp=a4bb7fde579b6844f3b691894de4d628f072abe3;hpb=2c85f876c1b9d5c161694cfb03cf20773b74c844;p=collection4.git diff --git a/src/graph_def.h b/src/graph_def.h index a4bb7fd..7c3e9fe 100644 --- a/src/graph_def.h +++ b/src/graph_def.h @@ -1,9 +1,33 @@ +/** + * collection4 - graph_def.h + * Copyright (C) 2010 Florian octo Forster + * + * This program 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 2.1 of the License, or (at your option) any later version. + * + * This program 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 program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + * + * Authors: + * Florian octo Forster + **/ + #ifndef GRAPH_DEF_H #define GRAPH_DEF_H 1 #include "graph_types.h" #include "utils_array.h" #include "oconfig.h" +#include "rrd_args.h" graph_def_t *def_create (graph_config_t *cfg, graph_ident_t *ident, const char *ds_name); @@ -22,7 +46,7 @@ _Bool def_matches (graph_def_t *def, graph_ident_t *ident); int def_foreach (graph_def_t *def, def_callback_t callback, void *user_data); int def_get_rrdargs (graph_def_t *def, graph_ident_t *ident, - str_array_t *args); + rrd_args_t *args); /* vim: set sw=2 sts=2 et fdm=marker : */ #endif