summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/modplug/memfile.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/modplug/memfile.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/modplug/memfile.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/modplug/memfile.h b/core/multimedia/opieplayer/modplug/memfile.h
new file mode 100644
index 0000000..2227f26
--- a/dev/null
+++ b/core/multimedia/opieplayer/modplug/memfile.h
@@ -0,0 +1,42 @@
1/* This file is part of the KDE project
2 Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA.
18*/
19#ifndef __memfile_h__
20#define __memfile_h__
21
22#include <qfile.h>
23
24class MemFile : public QFile
25{
26public:
27 MemFile();
28 MemFile( const QString &name );
29 virtual ~MemFile();
30
31 virtual void close();
32
33 QByteArray &data();
34
35private:
36 void unmap();
37 QByteArray m_data;
38};
39
40#endif
41/* vim: et sw=4
42 */