diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-12-27 01:57:22 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-12-27 01:57:22 -0500 |
commit | 1bb749687b92fa7fbccb77ee18654210a647a1f3 (patch) | |
tree | 68b79b6ca1ef7b3c17c4ada5655255c20f2fa8d3 /src/discord/chatsubmitparams.hpp | |
parent | 8bd628c1776c20dbf41d2fb18f6204c4a398da0e (diff) | |
parent | 155d95e29cc50a66cbe7711b172b195be637bc48 (diff) | |
download | abaddon-portaudio-1bb749687b92fa7fbccb77ee18654210a647a1f3.tar.gz abaddon-portaudio-1bb749687b92fa7fbccb77ee18654210a647a1f3.zip |
Merge branch 'master' into classic-channels
Diffstat (limited to 'src/discord/chatsubmitparams.hpp')
-rw-r--r-- | src/discord/chatsubmitparams.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/discord/chatsubmitparams.hpp b/src/discord/chatsubmitparams.hpp index e195189..45fbb2a 100644 --- a/src/discord/chatsubmitparams.hpp +++ b/src/discord/chatsubmitparams.hpp @@ -1,4 +1,5 @@ #pragma once +#include <optional> #include <vector> #include <string> #include <glibmm/ustring.h> @@ -15,6 +16,7 @@ struct ChatSubmitParams { Glib::RefPtr<Gio::File> File; AttachmentType Type; std::string Filename; + std::optional<std::string> Description; }; bool Silent = false; |