mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 09:50:33 -04:00
14 lines
204 B
C++
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 |