chromium/third_party/skia/modules/sksg/include/SkSGGroup.h

/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkSGGroup_DEFINED
#define SkSGGroup_DEFINED

#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "modules/sksg/include/SkSGRenderNode.h"

#include <cstddef>
#include <utility>
#include <vector>

class SkCanvas;
class SkMatrix;
struct SkPoint;

namespace sksg {
class InvalidationController;

/**
 * Concrete node, grouping together multiple descendants.
 */
class Group : public RenderNode {};

} // namespace sksg

#endif // SkSGGroup_DEFINED