diff options
-rw-r--r-- | samplecode/TransitionView.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/samplecode/TransitionView.h b/samplecode/TransitionView.h new file mode 100644 index 0000000000..ac95221f89 --- /dev/null +++ b/samplecode/TransitionView.h @@ -0,0 +1,15 @@ +/* + * Copyright 2012 Google Inc. + * + * Use of this source code is governed by a BSD-style license that can be + * found in the LICENSE file. + */ + +#ifndef SAMPLECODE_TRANSITIONVIEW_H_ +#define SAMPLECODE_TRANSITIONVIEW_H_ + +class SkView; + +SkView* create_transition(SkView* prev, SkView* next, int direction); + +#endif // SAMPLECODE_TRANSITIONVIEW_H_ |