| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- This file is part of Telegram Desktop,
- the official desktop application for the Telegram messaging service.
- For license and copyright information please follow this link:
- https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
- */
- #pragma once
- #include <QtCore/QString>
- #include <map>
- namespace Stripe {
- class FormEncodable {
- public:
- [[nodiscard]] virtual QString rootObjectName() = 0;
- [[nodiscard]] virtual std::map<QString, QString> formFieldValues() = 0;
- };
- template <typename T>
- struct MakeEncodable final : FormEncodable {
- public:
- MakeEncodable(const T &value) : _value(value) {
- }
- QString rootObjectName() override {
- return _value.rootObjectName();
- }
- std::map<QString, QString> formFieldValues() override {
- return _value.formFieldValues();
- }
- private:
- const T &_value;
- };
- } // namespace Stripe
|