kDB: Knowledge DataBase
Loading...
Searching...
No Matches
RDFDataset_p.h
1#pragma once
2
3#include "RDFDataset.h"
4
5#include <QSharedData>
6
7#include "Connection.h"
8
9namespace kDB
10{
11 namespace Repository
12 {
13 struct RDFDataset::Private : public QSharedData
14 {
15 Private(RDFDataset::Type _type, const Connection& _connection = Connection())
16 : type(_type), connection(_connection)
17 {
18 }
19 virtual ~Private();
20 const RDFDataset::Type type;
21 Connection connection;
22 virtual bool isValid() const;
23 virtual knowCore::Uri uri() const;
24 };
25 } // namespace Repository
26} // namespace kDB
Definition Connection.h:26
Definition Uri.h:15
Definition RDFDataset_p.h:14