mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 06:35:38 +00:00
22 lines
326 B
C
22 lines
326 B
C
|
#ifndef STOPELEMENT_H
|
||
|
#define STOPELEMENT_H
|
||
|
|
||
|
#include "styledelement.h"
|
||
|
|
||
|
namespace lunasvg {
|
||
|
|
||
|
class StopElement : public StyledElement
|
||
|
{
|
||
|
public:
|
||
|
StopElement();
|
||
|
|
||
|
double offset() const;
|
||
|
Color stopColorWithOpacity() const;
|
||
|
|
||
|
std::unique_ptr<Node> clone() const;
|
||
|
};
|
||
|
|
||
|
} // namespace lunasvg
|
||
|
|
||
|
#endif // STOPELEMENT_H
|