valentina/src/libs/vpropertyexplorer/vabstractpropertyfactory.h

53 lines
1.6 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vabstractpropertyfactory.h
** @author hedgeware <internal(at)hedgeware.net>
** @date
**
** @brief
** @copyright
** All rights reserved. This program and the accompanying materials
** are made available under the terms of the GNU Lesser General Public License
** (LGPL) version 2.1 which accompanies this distribution, and is available at
** http://www.gnu.org/licenses/lgpl-2.1.html
**
** This library 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
** Lesser General Public License for more details.
**
*************************************************************************/
#ifndef VABSTRACTPROPERTYFACTORY_H
#define VABSTRACTPROPERTYFACTORY_H
#include "vpropertyexplorer_global.h"
#include <QObject>
2014-09-10 19:57:08 +02:00
namespace VPE
{
class VProperty;
QT_WARNING_PUSH
QT_WARNING_DISABLE_CLANG("-Wweak-vtables")
class VPROPERTYEXPLORERSHARED_EXPORT VAbstractPropertyFactory
{
public:
//! Empty virtual destructor
virtual ~VAbstractPropertyFactory() {}
//! Creates a new property of a certain type and assigns a name and description (otionally)
//! \param type The type of the property as string
//! \param name The property's name
//! \return Returns the created property or NULL if it couldn't be be created
2023-05-03 13:07:02 +02:00
virtual auto createProperty(const QString &type, const QString &name) -> VProperty * = 0;
};
QT_WARNING_POP
2023-08-12 09:31:10 +02:00
} // namespace VPE
#endif // VABSTRACTPROPERTYFACTORY_H