~ubuntu-branches/ubuntu/gutsy/soprano/gutsy

« back to all changes in this revision

Viewing changes to soprano/vocabulary/nrl.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-10-12 14:43:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071012144348-yajzi51v4k23ahxf
Tags: 1.95.0~beta2-1ubuntu1
* Sync with Debian
* Add versioned build-dep on raptor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of Soprano Project.
 
3
 *
 
4
 * Copyright (C) 2007 Sebastian Trueg <trueg@kde.org>
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Library General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Library General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Library General Public License
 
17
 * along with this library; see the file COPYING.LIB.  If not, write to
 
18
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
19
 * Boston, MA 02110-1301, USA.
 
20
 */
 
21
 
 
22
#ifndef _SOPRANO_NRL_H_
 
23
#define _SOPRANO_NRL_H_
 
24
 
 
25
#include <QtCore/QUrl>
 
26
#include "soprano_export.h"
 
27
 
 
28
namespace Soprano {
 
29
    namespace Vocabulary {
 
30
        /**
 
31
         * The Nepomuk Representation Language
 
32
         */
 
33
        namespace NRL {
 
34
            /**
 
35
             * The NRL namespace (http://www.semanticdesktop.org/ontologies/2007/08/15/nrl/)
 
36
             */
 
37
            SOPRANO_EXPORT QUrl nrlNamespace();
 
38
 
 
39
            SOPRANO_EXPORT QUrl minCardinality();
 
40
            SOPRANO_EXPORT QUrl maxCardinality();
 
41
            SOPRANO_EXPORT QUrl cardinality();
 
42
            SOPRANO_EXPORT QUrl imports();
 
43
            SOPRANO_EXPORT QUrl ruleLanguage();
 
44
            SOPRANO_EXPORT QUrl InverseFunctionalProperty();
 
45
            SOPRANO_EXPORT QUrl Graph();
 
46
            SOPRANO_EXPORT QUrl hasSpecification();
 
47
            SOPRANO_EXPORT QUrl DocumentGraph();
 
48
            SOPRANO_EXPORT QUrl coreGraphMetadataFor();
 
49
            SOPRANO_EXPORT QUrl TransitiveProperty();
 
50
            SOPRANO_EXPORT QUrl FunctionalProperty();
 
51
            SOPRANO_EXPORT QUrl KnowledgeBase();
 
52
            SOPRANO_EXPORT QUrl externalRealizer();
 
53
            SOPRANO_EXPORT QUrl subGraphOf();
 
54
            SOPRANO_EXPORT QUrl Configuration();
 
55
            SOPRANO_EXPORT QUrl ViewSpecification();
 
56
            SOPRANO_EXPORT QUrl hasSemantics();
 
57
            SOPRANO_EXPORT QUrl ExternalViewSpecification();
 
58
            SOPRANO_EXPORT QUrl DefaultGraph();
 
59
            SOPRANO_EXPORT QUrl updatable();
 
60
            SOPRANO_EXPORT QUrl Semantics();
 
61
            SOPRANO_EXPORT QUrl equivalentGraph();
 
62
            SOPRANO_EXPORT QUrl ReflexiveProperty();
 
63
            SOPRANO_EXPORT QUrl AsymmetricProperty();
 
64
            SOPRANO_EXPORT QUrl viewOn();
 
65
            SOPRANO_EXPORT QUrl SymmetricProperty();
 
66
            SOPRANO_EXPORT QUrl superGraphOf();
 
67
            SOPRANO_EXPORT QUrl Ontology();
 
68
            SOPRANO_EXPORT QUrl realizes();
 
69
            SOPRANO_EXPORT QUrl rule();
 
70
            SOPRANO_EXPORT QUrl InstanceBase();
 
71
            SOPRANO_EXPORT QUrl RuleViewSpecification();
 
72
            SOPRANO_EXPORT QUrl semanticsDefinedBy();
 
73
            SOPRANO_EXPORT QUrl GraphMetadata();
 
74
            SOPRANO_EXPORT QUrl graphMetadataFor();
 
75
            SOPRANO_EXPORT QUrl GraphView();
 
76
            SOPRANO_EXPORT QUrl Data();
 
77
            SOPRANO_EXPORT QUrl inverseProperty();
 
78
            SOPRANO_EXPORT QUrl Schema();
 
79
        }
 
80
    }
 
81
}
 
82
 
 
83
#endif