blob: 84e43750f66dfec64984bc714280575bb3ba155f [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
11class SkRunnable {
12public:
robertphillips@google.com93f03322012-12-03 17:35:19 +000013 virtual ~SkRunnable() {};
scroggo@google.com4177ef42012-10-31 15:52:16 +000014 virtual void run() = 0;
15};
16
17#endif