mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-22 07:53:21 -04:00
This is a new plugin that imports hydrogen drum machine songs. Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
28 lines
454 B
C++
28 lines
454 B
C++
#ifndef _HYDROGEN_IMPORT_H
|
|
#define _HYDROGEN_IMPORT_H
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QPair>
|
|
#include <QtCore/QVector>
|
|
|
|
#include "ImportFilter.h"
|
|
|
|
|
|
class HydrogenImport : public ImportFilter
|
|
{
|
|
public:
|
|
HydrogenImport( const QString & _file );
|
|
bool readSong();
|
|
|
|
virtual ~HydrogenImport();
|
|
|
|
virtual PluginView * instantiateView( QWidget * )
|
|
{
|
|
return( NULL );
|
|
}
|
|
private:
|
|
virtual bool tryImport( trackContainer * _tc );
|
|
};
|
|
#endif
|
|
|