blob: 73c7c1803b3470553509d202c6814ea16db47730 [file] [log] [blame]
fmalita6ceef3d2016-07-26 18:46:34 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkSVGContainer_DEFINED
9#define SkSVGContainer_DEFINED
10
11#include "SkSVGTransformableNode.h"
12#include "SkTArray.h"
13
14class SkSVGContainer : public SkSVGTransformableNode {
15public:
16 virtual ~SkSVGContainer() = default;
17
18 void appendChild(sk_sp<SkSVGNode>) override;
19
20protected:
fmalita28d5b722016-09-12 17:06:47 -070021 explicit SkSVGContainer(SkSVGTag);
fmalita6ceef3d2016-07-26 18:46:34 -070022
fmalita397a5172016-08-08 11:38:55 -070023 void onRender(const SkSVGRenderContext&) const override;
fmalita6ceef3d2016-07-26 18:46:34 -070024
fmalita28d5b722016-09-12 17:06:47 -070025 // TODO: add some sort of child iterator, and hide the container.
fmalita6ceef3d2016-07-26 18:46:34 -070026 SkSTArray<1, sk_sp<SkSVGNode>, true> fChildren;
27
fmalita28d5b722016-09-12 17:06:47 -070028private:
fmalita6ceef3d2016-07-26 18:46:34 -070029 typedef SkSVGTransformableNode INHERITED;
30};
31
32#endif // SkSVGSVG_DEFINED