blob: 3d75ad4d916c8b94a4511f0c243317db41955cc5 [file] [log] [blame]
/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkottieJson_DEFINED
#define SkottieJson_DEFINED
#include "include/core/SkRefCnt.h"
#include "src/utils/SkJSON.h"
class SkData;
class SkStream;
class SkString;
namespace skottie {
template <typename T>
bool Parse(const skjson::Value&, T*);
template <typename T>
T ParseDefault(const skjson::Value& v, const T& defaultValue) {
T res;
if (!Parse<T>(v, &res)) {
res = defaultValue;
}
return res;
}
const skjson::StringValue* ParseSlotID(const skjson::ObjectValue* jobj);
} // namespace skottie
#endif // SkottieJson_DEFINED