~ubuntu-branches/ubuntu/trusty/soprano/trusty

« back to all changes in this revision

Viewing changes to server/serverdatastream.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-01-02 13:02:08 UTC
  • mfrom: (1.1.43)
  • Revision ID: package-import@ubuntu.com-20130102130208-25etkuo00kh8cb5w
Tags: 2.9.0+dfsg.1-0ubuntu1
* New upstream release
  - Update symbols/install files
* Make DFSG compliant

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) 2008 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_SERVER_DATA_STREAM_H_
 
23
#define _SOPRANO_SERVER_DATA_STREAM_H_
 
24
 
 
25
#include "datastream.h"
 
26
 
 
27
class QIODevice;
 
28
 
 
29
namespace Soprano {
 
30
 
 
31
    namespace Server {
 
32
        /**
 
33
        * Provides streaming methods for all %Soprano
 
34
        * types. Compared to QDataStream's operators
 
35
        * it provides error handling and automatically
 
36
        * fills the buffer if more data needs to be
 
37
        * requested (QIODevice::waitForReadyRead)
 
38
        *
 
39
        * \author Sebastian Trueg <trueg@kde.org>
 
40
        */
 
41
        class DataStream : public Soprano::DataStream
 
42
        {
 
43
        public:
 
44
            DataStream( QIODevice* dev );
 
45
            ~DataStream();
 
46
 
 
47
        protected:
 
48
            virtual bool read( char* data, qint64 size );
 
49
            virtual bool write( const char* data, qint64 size );
 
50
 
 
51
        private:
 
52
            QIODevice* m_device;
 
53
        };
 
54
    }
 
55
}
 
56
 
 
57
#endif