musix 0.3.5

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
#ifndef HIVELY_PLAYER_H
#define HIVELY_PLAYER_H

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

namespace musix {

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

} // namespace musix

#endif // HIVELY_PLAYER_H