yacreader/YACReaderLibrary/bundle_creator.h
2019-06-01 16:04:48 +02:00

14 lines
204 B
C++

#ifndef __BUNDLE_CREATOR_H
#define __BUNDLE_CREATOR_H
#include <QtCore>
class BundleCreator : public QObject
{
Q_OBJECT
public:
BundleCreator(void);
~BundleCreator(void) override;
};
#endif