[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / utils / ISerializable.h
blob12f0fbacfd56737e5d255893c203610630bc402e
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 class CVariant;
13 class ISerializable
15 protected:
16 /* make sure nobody deletes a pointer to this class */
17 ~ISerializable() = default;
19 public:
20 virtual void Serialize(CVariant& value) const = 0;