1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "SVGAttrValueWrapper.h"
9 #include "SVGAnimatedIntegerPair.h"
10 #include "SVGAnimatedLength.h"
11 #include "SVGAnimatedNumberPair.h"
12 #include "SVGAnimatedOrient.h"
13 #include "SVGAnimatedPreserveAspectRatio.h"
14 #include "SVGAnimatedViewBox.h"
15 #include "SVGLengthList.h"
16 #include "SVGNumberList.h"
17 #include "SVGPathData.h"
18 #include "SVGPointList.h"
19 #include "SVGStringList.h"
20 #include "SVGTransformList.h"
25 void SVGAttrValueWrapper::ToString(const SVGAnimatedOrient
* aOrient
,
27 aOrient
->GetBaseValueString(aResult
);
31 void SVGAttrValueWrapper::ToString(const SVGAnimatedIntegerPair
* aIntegerPair
,
33 aIntegerPair
->GetBaseValueString(aResult
);
37 void SVGAttrValueWrapper::ToString(const SVGAnimatedLength
* aLength
,
39 aLength
->GetBaseValueString(aResult
);
43 void SVGAttrValueWrapper::ToString(const SVGLengthList
* aLengthList
,
45 aLengthList
->GetValueAsString(aResult
);
49 void SVGAttrValueWrapper::ToString(const SVGNumberList
* aNumberList
,
51 aNumberList
->GetValueAsString(aResult
);
55 void SVGAttrValueWrapper::ToString(const SVGAnimatedNumberPair
* aNumberPair
,
57 aNumberPair
->GetBaseValueString(aResult
);
61 void SVGAttrValueWrapper::ToString(const SVGPathData
* aPathData
,
63 aPathData
->GetValueAsString(aResult
);
67 void SVGAttrValueWrapper::ToString(const SVGPointList
* aPointList
,
69 aPointList
->GetValueAsString(aResult
);
73 void SVGAttrValueWrapper::ToString(
74 const SVGAnimatedPreserveAspectRatio
* aPreserveAspectRatio
,
76 aPreserveAspectRatio
->GetBaseValueString(aResult
);
80 void SVGAttrValueWrapper::ToString(const SVGStringList
* aStringList
,
82 aStringList
->GetValue(aResult
);
86 void SVGAttrValueWrapper::ToString(const SVGTransformList
* aTransformList
,
88 aTransformList
->GetValueAsString(aResult
);
92 void SVGAttrValueWrapper::ToString(const SVGAnimatedViewBox
* aViewBox
,
94 aViewBox
->GetBaseValueString(aResult
);
97 } // namespace mozilla