/* * Copyright 2014 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkBBHFactory_DEFINED #define SkBBHFactory_DEFINED #include "include/core/SkRefCnt.h" #include "include/core/SkTypes.h" // TODO(kjlubick) fix client users and then make this a forward declare #include "include/core/SkRect.h" // IWYU pragma: keep #include <cstddef> #include <vector> class SkBBoxHierarchy : public SkRefCnt { … }; class SK_API SkBBHFactory { … }; class SK_API SkRTreeFactory : public SkBBHFactory { … }; #endif