/************************************************************************ ** ** @file vdatatool.h ** @author Roman Telezhinsky ** @date November 15, 2013 ** ** @brief ** @copyright ** This source code is part of the Valentine project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2013 Valentina project ** All Rights Reserved. ** ** Valentina is free software: you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation, either version 3 of the License, or ** (at your option) any later version. ** ** Valentina is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with Valentina. If not, see . ** *************************************************************************/ #ifndef VDATATOOL_H #define VDATATOOL_H #include "../container/vcontainer.h" //We need QObject class because we use qobject_cast. /** * @brief The VDataTool class need for getting access to data container of tool. */ class VDataTool : public QObject { Q_OBJECT public: /** * @brief VDataTool constructor. * @param data container with variables * @param parent parent object */ VDataTool(VContainer *data, QObject *parent = 0); virtual ~VDataTool(){} /** * @brief operator = assignment operator. * @param tool tool * @return tool */ VDataTool &operator= (const VDataTool &tool); /** * @brief getData return data container. * @return container. */ inline VContainer getData() const { return data; } /** * @brief setData set data container. * @param value container. */ inline void setData(const VContainer *value){data = *value;} /** * @brief referens return count of referens. * @return count count of referens. */ virtual inline qint64 referens() const {return _referens;} /** * @brief incrementReferens increment referens. */ virtual inline void incrementReferens(){++_referens;} /** * @brief decrementReferens decrement referens. */ virtual void decrementReferens(); protected: /** * @brief data container with data */ VContainer data; /** * @brief _referens keep count tools what use this tool. If value more than 1 you can't delete tool. */ qint64 _referens; }; #endif // VDATATOOL_H