mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
21 lines
326 B
C++
21 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
|