michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #ifndef SkSVGEllipse_DEFINED michael@0: #define SkSVGEllipse_DEFINED michael@0: michael@0: #include "SkSVGElements.h" michael@0: michael@0: class SkSVGEllipse : public SkSVGElement { michael@0: DECLARE_SVG_INFO(Ellipse); michael@0: private: michael@0: SkString f_cx; michael@0: SkString f_cy; michael@0: SkString f_rx; michael@0: SkString f_ry; michael@0: typedef SkSVGElement INHERITED; michael@0: }; michael@0: michael@0: #endif // SkSVGEllipse_DEFINED