blob: d890101ec8c639381811c3498ad13dde53866141 [file] [log] [blame]
#ifndef _RIVE_CORE_DOUBLE_TYPE_HPP_
#define _RIVE_CORE_DOUBLE_TYPE_HPP_
namespace rive
{
class BinaryReader;
class CoreDoubleType
{
public:
static const int id = 2;
static double deserialize(BinaryReader& reader);
};
} // namespace rive
#endif