24 lines
536 B
C++
24 lines
536 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) The authors
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#ifndef QSK_ARC_NODE_H
|
|
#define QSK_ARC_NODE_H
|
|
|
|
#include "QskGlobal.h"
|
|
#include <qsgnode.h>
|
|
|
|
class QskArcHints;
|
|
|
|
class QSK_EXPORT QskArcNode : public QSGNode
|
|
{
|
|
public:
|
|
QskArcNode();
|
|
~QskArcNode() override;
|
|
|
|
void setArcData( const QRectF&, const QskArcHints& );
|
|
};
|
|
|
|
#endif
|