mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
32546b5874
git-subtree-dir: external/lunasvg git-subtree-split: 7417baa0aff477f361e44e2aa793fdb0c7aae352
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
|