blob: dfa5bae5e1e388a0c1fc61dce4eea14a83ae745c [file] [log] [blame]
/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef skgpu_Task_DEFINED
#define skgpu_Task_DEFINED
#include "include/core/SkRefCnt.h"
namespace skgpu {
class Task : public SkRefCnt {
public:
~Task() override;
protected:
Task();
private:
};
} // namespace skgpu
#endif // skgpu_Task_DEFINED