ref #28 Created class about information owner

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

View File

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