ES-DE/external/lunasvg/source/stopelement.h

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