musix 0.3.5

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef USFPLAYER_H
#define USFPLAYER_H

#include "../../chipplugin.h"

namespace musix {

class USFPlugin : public ChipPlugin {
public:
    virtual std::string name() const override { return "USFPlugin"; }
    virtual bool canHandle(const std::string& name) override;
    virtual ChipPlayer* fromFile(const std::string& fileName) override;
};

} // namespace musix

#endif // USFPLAYER_H