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 SkSVGLinearGradient_DEFINED michael@0: #define SkSVGLinearGradient_DEFINED michael@0: michael@0: #include "SkSVGGradient.h" michael@0: michael@0: class SkSVGLinearGradient : public SkSVGGradient { michael@0: DECLARE_SVG_INFO(LinearGradient); michael@0: private: michael@0: SkString f_gradientTransform; michael@0: SkString f_gradientUnits; michael@0: SkString f_x1; michael@0: SkString f_x2; michael@0: SkString f_y1; michael@0: SkString f_y2; michael@0: SkString fMatrixID; michael@0: typedef SkSVGGradient INHERITED; michael@0: }; michael@0: michael@0: #endif // SkSVGLinearGradient_DEFINED