forked from p2/Redland-ObjC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRedland-ObjC.h
50 lines (48 loc) · 1.61 KB
/
Redland-ObjC.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// Redland Objective-C Bindings
// $Id: Redland-ObjC.h 319 2004-11-03 21:29:55Z kianga $
//
// Copyright 2004 Rene Puls <http://purl.org/net/kianga/>
// Copyright 2012 Pascal Pfiffner <http://www.chip.org/>
//
// This file is available under the following three licenses:
// 1. GNU Lesser General Public License (LGPL), version 2.1
// 2. GNU General Public License (GPL), version 2
// 3. Apache License, version 2.0
//
// You may not use this file except in compliance with at least one of
// the above three licenses. See LICENSE.txt at the top of this package
// for the complete terms and further details.
//
// The most recent version of this software can be found here:
// <https://github.com/p2/Redland-ObjC>
//
// For information about the Redland RDF Application Framework, including
// the most recent version, see <http://librdf.org/>.
//
/**
* Header file to be included in projects utilizing Redland.
*
* This header file should include all headers a framework user might want to use.
*/
#import <redland.h>
#import <RedlandException.h>
#import <RedlandIterator.h>
#import <RedlandIteratorEnumerator.h>
#import <RedlandModel.h>
#import <RedlandModel-Convenience.h>
#import <RedlandNamespace.h>
#import <RedlandNode.h>
#import <RedlandNode-Convenience.h>
#import <RedlandParser.h>
#import <RedlandQuery.h>
#import <RedlandQueryResults.h>
#import <RedlandQueryResultsEnumerator.h>
#import <RedlandSerializer.h>
#import <RedlandStatement.h>
#import <RedlandStorage.h>
#import <RedlandStream.h>
#import <RedlandStreamEnumerator.h>
#import <RedlandURI.h>
#import <RedlandWorld.h>
#import <RedlandWrappedObject.h>