/* * Copyright © 2016 Igor Gnatenko * * 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 2.1 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef LIBDNF_RELDEP_H #define LIBDNF_RELDEP_H #include #include "dnf-enums.h" #include "dnf-types.h" #ifdef __cplusplus extern "C" { #endif DnfReldep *dnf_reldep_new(DnfSack *sack, const char *name, int cmp_type, const char *evr); const char *dnf_reldep_to_string(DnfReldep *reldep); Id dnf_reldep_get_id(DnfReldep *reldep); void dnf_reldep_free(DnfReldep *reldep); #ifdef __cplusplus } #endif #endif // LIBDNF_RELDEP_H