[Kde-bindings] KDE/kdebindings/csharp/soprano/soprano
Richard Dale
Richard_Dale at tipitina.demon.co.uk
Sat Jun 14 13:14:43 UTC 2008
SVN commit 820478 by rdale:
* Add missing Soprano classes
CCMAIL: kde-bindings at kde.org
M +0 -3 Soprano_BindingSet.cs
M +0 -5 Soprano_Error.cs
M +0 -3 Soprano_Error_Error.cs
M +0 -3 Soprano_Error_ErrorCache.cs
M +0 -3 Soprano_Error_Locator.cs
M +0 -3 Soprano_Error_ParserError.cs
M +0 -3 Soprano_LiteralValue.cs
M +0 -3 Soprano_Model.cs
M +0 -3 Soprano_Node.cs
M +0 -3 Soprano_NodeIterator.cs
M +0 -5 Soprano_Query.cs
M +0 -2 Soprano_QueryResultIterator.cs
M +0 -3 Soprano_Statement.cs
M +0 -3 Soprano_StatementIterator.cs
M +0 -5 Soprano_Vocabulary_NAO.cs
M +0 -5 Soprano_Vocabulary_NRL.cs
M +0 -5 Soprano_Vocabulary_OWL.cs
M +0 -5 Soprano_Vocabulary_RDF.cs
M +0 -5 Soprano_Vocabulary_RDFS.cs
M +0 -5 Soprano_Vocabulary_SIL.cs
M +0 -5 Soprano_Vocabulary_XMLSchema.cs
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_BindingSet.cs #820477:820478
@@ -1,11 +1,9 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
using System.Collections.Generic;
-
/// <remarks>
/// \class BindingSet bindingset.h Soprano/BindingSet
/// \brief Represents one set of bindings in the result of a select query.
@@ -14,7 +12,6 @@
/// \sa QueryResultIterator
/// \author Sebastian Trueg <trueg at kde.org>
/// </remarks> <short> \class BindingSet bindingset.</short>
-
[SmokeClass("Soprano::BindingSet")]
public class BindingSet : Object, IDisposable {
protected SmokeInvocation interceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Error.cs #820477:820478
@@ -1,10 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Error {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// %Soprano defines a number of error codes that are
/// used to provide a quick success status check in methods
@@ -20,9 +18,6 @@
ErrorPermissionDenied = 0x4,
ErrorUnknown = 0x1000,
}
-
-
-
[SmokeClass("Soprano::Error")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Error_Error.cs #820477:820478
@@ -1,17 +1,14 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Error {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// \class Error error.h Soprano/Error/Error
/// \brief Represents an error in %Soprano.
/// \author Sebastian Trueg <trueg at kde.org>
/// \sa \ref soprano_error_handling
/// </remarks> <short> \class Error error.</short>
-
[SmokeClass("Soprano::Error::Error")]
public class Error : Object, IDisposable {
protected SmokeInvocation interceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Error_ErrorCache.cs #820477:820478
@@ -1,13 +1,11 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Error {
-
using Soprano;
using System;
using Qyoto;
public interface IErrorCache {
}
-
/// <remarks>
/// \class ErrorCache error.h Soprano/Error/ErrorCache
/// \brief Core class of %Soprano's exception system.
@@ -19,7 +17,6 @@
/// \author Sebastian Trueg <trueg at kde.org>
/// \sa \ref soprano_error_handling
/// </remarks> <short> \class ErrorCache error.</short>
-
[SmokeClass("Soprano::Error::ErrorCache")]
public class ErrorCache : Object, IErrorCache, IDisposable {
protected SmokeInvocation interceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Error_Locator.cs #820477:820478
@@ -1,17 +1,14 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Error {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// \class Locator locator.h Soprano/Error/Locator
/// \brief Details of a parser Error
/// A Locator object provides additional information about
/// parsing errors.
/// </remarks> <short> \class Locator locator.</short>
-
[SmokeClass("Soprano::Error::Locator")]
public class Locator : Object, IDisposable {
protected SmokeInvocation interceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Error_ParserError.cs #820477:820478
@@ -1,10 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Error {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// \class ParserError error.h Soprano/Error/ParserError
/// \brief Represents a parser error in %Soprano.
@@ -21,7 +19,6 @@
/// \author Sebastian Trueg <trueg at kde.org>
/// \sa \ref soprano_error_handling
/// </remarks> <short> \class ParserError error.</short>
-
[SmokeClass("Soprano::Error::ParserError")]
public class ParserError : Soprano.Error.Error, IDisposable {
protected ParserError(Type dummy) : base((Type) null) {}
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_LiteralValue.cs #820477:820478
@@ -1,10 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// \class LiteralValue literalvalue.h Soprano/LiteralValue
/// \brief Represents a literal value of an RDF Node.
@@ -32,7 +30,6 @@
/// \sa Vocabulary.XMLSchema
/// \author Sebastian Trueg <trueg at kde.org>
/// </remarks> <short> \class LiteralValue literalvalue.</short>
-
[SmokeClass("Soprano::LiteralValue")]
public class LiteralValue : Object, IDisposable {
protected SmokeInvocation interceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Model.cs #820477:820478
@@ -1,11 +1,9 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
using System.Collections.Generic;
-
/// <remarks>
/// \class Model model.h Soprano/Model
/// \brief A Model is the central class in %Soprano. It is a queryable
@@ -41,7 +39,6 @@
/// \author Daniele Galdi <daniele.galdi at gmail.com><br>Sebastian Trueg <trueg at kde.org>
/// See <see cref="IModelSignals"></see> for signals emitted by Model
/// </remarks> <short> \class Model model.</short>
-
[SmokeClass("Soprano::Model")]
public abstract class Model : QObject, Soprano.Error.IErrorCache {
protected Model(Type dummy) : base((Type) null) {}
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Node.cs #820477:820478
@@ -1,10 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// \class Node node.h Soprano/Node
/// \brief A Node represents one RDF resource.
@@ -19,7 +17,6 @@
/// should honour this restriction.
/// \author Daniele Galdi <daniele.galdi at gmail.com><br>Sebastian Trueg <trueg at kde.org>
/// </remarks> <short> \class Node node.</short>
-
[SmokeClass("Soprano::Node")]
public class Node : Object, IDisposable {
protected SmokeInvocation interceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_NodeIterator.cs #820477:820478
@@ -1,11 +1,9 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
using System.Collections.Generic;
-
/// <remarks>
/// \class NodeIterator nodeiterator.h Soprano/NodeIterator
/// \brief An iterator that provides a stream of Nodes.
@@ -25,7 +23,6 @@
/// that copies of one iterator object work on the same data.
/// \author Sebastian Trueg <trueg at kde.org>
/// </remarks> <short> \class NodeIterator nodeiterator.</short>
-
[SmokeClass("Soprano::NodeIterator")]
public class NodeIterator : Soprano.Iterator, IDisposable {
protected NodeIterator(Type dummy) : base((Type) null) {}
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Query.cs #820477:820478
@@ -1,10 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Query {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// %Soprano defines a set of well-known query languages that can be used to serialize queries.
/// Additional languages may be supported using Query.QueryLanguageUser in combination with
@@ -23,9 +21,6 @@
QUERY_LANGUAGE_SERQL = QueryLanguageSerql,
QUERY_LANGUAGE_USER = QueryLanguageUser,
}
-
-
-
[SmokeClass("Soprano::Query")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_QueryResultIterator.cs #820477:820478
@@ -1,11 +1,9 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
using System.Collections.Generic;
-
[SmokeClass("Soprano::QueryResultIterator")]
public class QueryResultIterator : Soprano.Iterator, IDisposable {
protected QueryResultIterator(Type dummy) : base((Type) null) {}
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Statement.cs #820477:820478
@@ -1,10 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
-
/// <remarks>
/// \class Statement statement.h Soprano/Statement
/// \brief A Statement instance represents one RDF quadruple.
@@ -17,7 +15,6 @@
/// \sa Node
/// \author Daniele Galdi <daniele.galdi at gmail.com><br>Sebastian Trueg <trueg at kde.org>
/// </remarks> <short> \class Statement statement.</short>
-
[SmokeClass("Soprano::Statement")]
public class Statement : Object, IDisposable {
protected SmokeInvocation interceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_StatementIterator.cs #820477:820478
@@ -1,11 +1,9 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano {
-
using Soprano;
using System;
using Qyoto;
using System.Collections.Generic;
-
/// <remarks>
/// \class StatementIterator statementiterator.h Soprano/StatementIterator
/// \brief An iterator that provides a stream of Statements.
@@ -25,7 +23,6 @@
/// that copies of one iterator object work on the same data.
/// \author Daniele Galdi <daniele.galdi at gmail.com><br>Sebastian Trueg <trueg at kde.org>
/// </remarks> <short> \class StatementIterator statementiterator.</short>
-
[SmokeClass("Soprano::StatementIterator")]
public class StatementIterator : Soprano.Iterator, IDisposable {
protected StatementIterator(Type dummy) : base((Type) null) {}
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Vocabulary_NAO.cs #820477:820478
@@ -1,13 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Vocabulary.NAO {
-
using Soprano;
using System;
using Qyoto;
-
-
-
-
[SmokeClass("Soprano::Vocabulary::NAO")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Vocabulary_NRL.cs #820477:820478
@@ -1,13 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Vocabulary.NRL {
-
using Soprano;
using System;
using Qyoto;
-
-
-
-
[SmokeClass("Soprano::Vocabulary::NRL")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Vocabulary_OWL.cs #820477:820478
@@ -1,13 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Vocabulary.OWL {
-
using Soprano;
using System;
using Qyoto;
-
-
-
-
[SmokeClass("Soprano::Vocabulary::OWL")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Vocabulary_RDF.cs #820477:820478
@@ -1,13 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Vocabulary.RDF {
-
using Soprano;
using System;
using Qyoto;
-
-
-
-
[SmokeClass("Soprano::Vocabulary::RDF")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Vocabulary_RDFS.cs #820477:820478
@@ -1,13 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Vocabulary.RDFS {
-
using Soprano;
using System;
using Qyoto;
-
-
-
-
[SmokeClass("Soprano::Vocabulary::RDFS")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Vocabulary_SIL.cs #820477:820478
@@ -1,17 +1,12 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Vocabulary.SIL {
-
using Soprano;
using System;
using Qyoto;
-
-
-
/// <remarks>
/// SIL, The Soprano Inference Language defines a set or URIs that
/// are used by the Soprano inference engine.
/// </remarks> <short> SIL, The Soprano Inference Language defines a set or URIs that are used by the Soprano inference engine.</short>
-
[SmokeClass("Soprano::Vocabulary::SIL")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
--- trunk/KDE/kdebindings/csharp/soprano/soprano/Soprano_Vocabulary_XMLSchema.cs #820477:820478
@@ -1,13 +1,8 @@
//Auto-generated by kalyptus. DO NOT EDIT.
namespace Soprano.Vocabulary.XMLSchema {
-
using Soprano;
using System;
using Qyoto;
-
-
-
-
[SmokeClass("Soprano::Vocabulary::XMLSchema")]
public class Global {
private static SmokeInvocation staticInterceptor = null;
More information about the Kde-bindings
mailing list