4
0
mirror of https://github.com/QuasarApp/CopyrightFixer.git synced 2025-05-05 14:09:48 +00:00

ref Created class about information owner

This commit is contained in:
IgorekLoschinin 2021-04-17 10:12:25 +03:00
parent 86e8366168
commit c456d1d62a

@ -6,6 +6,7 @@
//#
#include "CopyrighFixer_global.h"
#include "QString"
inline void initCopyrighFixerResources() { Q_INIT_RESOURCE(CopyrighFixer); }
@ -14,4 +15,17 @@ namespace CopyrighFixer {
bool CopyrighFixer_EXPORT init();
/**
* @brief The InfoOwner class for collect information about owner.
*/
class CopyrighFixer_EXPORT InfoOwner{
public:
InfoOwner();
QString name;
QString timeRange;
};
};