1/* -*- Mode: c; c-basic-offset: 2 -*-
2 *
3 * rdf_raptor.h - librdf Raptor integration
4 *
5 * Copyright (C) 2008, David Beckett http://www.dajobe.org/
6 *
7 * This package is Free Software and part of Redland http://librdf.org/
8 *
9 * It is licensed under the following three licenses as alternatives:
10 * 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
11 * 2. GNU General Public License (GPL) V2 or any newer version
12 * 3. Apache License, V2.0 or any newer version
13 *
14 * You may not use this file except in compliance with at least one of
15 * the above three licenses.
16 *
17 * See LICENSE.html or LICENSE.txt at the top of this package for the
18 * complete terms and further detail along with the license texts for
19 * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
20 *
21 *
22 */
23
24
25
26#ifndef LIBRDF_RAPTOR_H
27#define LIBRDF_RAPTOR_H
28
29#ifdef LIBRDF_INTERNAL
30#include <rdf_raptor_internal.h>
31#endif
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37REDLAND_API
38void librdf_world_set_raptor(librdf_world* world, raptor_world* raptor_world_ptr);
39REDLAND_API
40raptor_world* librdf_world_get_raptor(librdf_world* world);
41
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif
48