libcomps ..
Loading...
Searching...
No Matches
comps_docgroupid.h
Go to the documentation of this file.
1/* libcomps - C alternative to yum.comps library
2 * Copyright (C) 2013 Jindrich Luza
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 * USA
18 */
19
23
24#ifndef COMPS_DOCGROUPID_H
25#define COMPS_DOCGROUPID_H
26
27#include <stdbool.h>
28
29#include "comps_utils.h"
30#include "comps_log.h"
31#include "comps_validate.h"
32#include "comps_default.h"
33#include "comps_obj.h"
34
36typedef struct {
40 bool def;
42 COMPS_ObjList *arches;
45
46//HEAD_COMPS_CREATE_u(docgroupid, COMPS_DocGroupId) /*comps_utils.h macro*/
47//HEAD_COMPS_COPY_u(docgroupid, COMPS_DocGroupId) /*comps_utils.h macro*/
48//HEAD_COMPS_DESTROY_u(docgroupid, COMPS_DocGroupId) /*comps_utils.h macro*/
49
50char __comps_docgroupid_cmp_set(void *gid1, void *gid2);
51
58
65void comps_docgroupid_set_name(COMPS_DocGroupId *gid, char *name, char copy);
66
73
81
82COMPS_ObjList* comps_docgroupid_arches(COMPS_DocGroupId *gid);
83void comps_docgroupid_set_arches(COMPS_DocGroupId *gid,
84 COMPS_ObjList *arches);
85
86signed char comps_docgroupid_xml(COMPS_DocGroupId *groupid,
87 xmlTextWriterPtr writer,
88 COMPS_Log *log, COMPS_XMLOptions *options,
89 COMPS_DefaultsOptions *def_options);
90
91extern COMPS_ValRuleGeneric* COMPS_DocGroupId_ValidateRules[];
92
93#endif
COMPS_Object * comps_docgroupid_get_name(COMPS_DocGroupId *gid)
COMPS_Object * comps_docgroupid_get_default(COMPS_DocGroupId *gid)
void comps_docgroupid_set_name(COMPS_DocGroupId *gid, char *name, char copy)
void comps_docgroupid_set_default(COMPS_DocGroupId *gid, int def)
COMPS_Object header file.
#define COMPS_Object_HEAD
Definition comps_obj.h:86
#define COMPS_Object_TAIL(obj)
insert "extern COMPS_ObjectInfo <obj>_ObjInfo" statement. Use this macro in combination with COMPS_OB...
Definition comps_obj.h:89
Definition comps_docgroupid.h:36
bool def
Definition comps_docgroupid.h:40
COMPS_Str * name
Definition comps_docgroupid.h:38
Definition comps_objlist.h:41
Definition comps_obj.h:124
Definition comps_obj.h:143