blob: 7a93b60c898018f6bac149c402703b442c943509 [file] [log] [blame]
scroggo@google.com4177ef42012-10-31 15:52:16 +00001/*
2 * Copyright 2012 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 SkRunnable_DEFINED
9#define SkRunnable_DEFINED
10
mtklein406654b2014-09-03 15:34:37 -070011struct SkRunnable {
12 virtual ~SkRunnable() {};
scroggo@google.com4177ef42012-10-31 15:52:16 +000013 virtual void run() = 0;
14};
15
scroggo@google.com4177ef42012-10-31 15:52:16 +000016#endif