blob: 33abf1c03c195de15328e74a9b1140f32ea71d98 [file] [log] [blame]
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkottieAnimator_DEFINED
#define SkottieAnimator_DEFINED
#include "SkottiePriv.h"
#include <functional>
namespace skjson { class Value; }
namespace skottie {
namespace internal {
// This is the workhorse for property binding: depending on whether the property is animated,
// it will either apply immediately or instantiate and attach a keyframe animator.
template <typename T>
bool BindProperty(const skjson::Value&,
AnimatorScope*,
std::function<void(const T&)>&&,
const T* default_igore = nullptr);
template <typename T>
bool BindProperty(const skjson::Value& jv,
AnimatorScope* animators,
std::function<void(const T&)>&& apply,
const T& default_ignore) {
return BindProperty(jv, animators, std::move(apply), &default_ignore);
}
} // namespace internal
} // namespace skottie
#endif // SkottieAnimator_DEFINED