File: qfilestream.h

package info (click to toggle)
kdegraphics-mobipocket 4%3A20.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 196 kB
  • sloc: cpp: 586; xml: 149; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 963 bytes parent folder | download | duplicates (2)
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
/***************************************************************************
 *   Copyright (C) 2008 by Jakub Stachowski <qbast@go2.pl>                 *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 ***************************************************************************/

#ifndef QFILESTREAM_H
#define QFILESTREAM_H

#include <QFile>
#include "mobipocket.h"

namespace Mobipocket {

class QMOBIPOCKET_EXPORT QFileStream : public Stream
{
public:
    QFileStream(const QString& name);
    ~QFileStream();
    int read(char* buf, int size) override;
    bool seek(int pos) override;
private:
    QFile *d;
};

}
#endif