Files
sleepy-discord/sleepy_discord/embed.cpp
2021-11-26 11:53:20 -05:00

35 lines
902 B
C++

#include "embed.h"
namespace SleepyDiscord {
EmbedThumbnail::EmbedThumbnail(const json::Value & json) :
EmbedThumbnail(json::fromJSON<EmbedThumbnail>(json)) {
}
EmbedVideo::EmbedVideo(const json::Value & json) :
EmbedVideo(json::fromJSON<EmbedVideo>(json)) {
}
EmbedImage::EmbedImage(const json::Value & json) :
EmbedImage(json::fromJSON<EmbedImage>(json)) {
}
EmbedProvider::EmbedProvider(const json::Value & json) :
EmbedProvider(json::fromJSON<EmbedProvider>(json)) {
}
EmbedAuthor::EmbedAuthor(const json::Value & json) :
EmbedAuthor(json::fromJSON<EmbedAuthor>(json)) {
}
EmbedFooter::EmbedFooter(const json::Value & json) :
EmbedFooter(json::fromJSON<EmbedFooter>(json)) {
}
EmbedField::EmbedField(const json::Value & json) :
EmbedField(json::fromJSON<EmbedField>(json)) {
}
Embed::Embed(const json::Value & json) :
Embed(json::fromJSON<Embed>(json)) {
}
}