diff --git a/src/CopyrighFixer/CopyrighFixer/copyrighfixer.h b/src/CopyrighFixer/CopyrighFixer/copyrighfixer.h index 1511d5c..fbea61a 100644 --- a/src/CopyrighFixer/CopyrighFixer/copyrighfixer.h +++ b/src/CopyrighFixer/CopyrighFixer/copyrighfixer.h @@ -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; + +}; + };