summaryrefslogtreecommitdiff
path: root/libsidplay2/sidplay-libs-2.1.0/libsidutils/include/sidplay/utils/SidUsage.h
blob: 77e6370843feae06078ee86d4317d5f60a2a3193 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
/***************************************************************************
                          SidUsage.h  -  sidusage file support
                             -------------------
    begin                : Tues Nov 19 2002
    copyright            : (C) 2002 by Simon White
    email                : sidplay2@yahoo.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 _SidUsage_h_
#define _SidUsage_h_

#include <sidplay/sidusage.h>
#include <sidplay/SidTune.h>


class SID_EXTERN SidUsage
{
protected:
    bool  m_status;
    const char *m_errorString;

public:
    SidUsage ();

    void           read       (const char *filename, sid_usage_t &usage);
    void           write      (const char *filename, const sid_usage_t &usage,
                               SidTuneInfo &tuneInfo);
    const char *   error      (void) { return m_errorString; }

    operator bool () { return m_status; }
};

#endif // _SidUsage_h_