mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-06 20:15:19 +03:00
16 lines
301 B
C++
16 lines
301 B
C++
#pragma once
|
|
#include <gtkmm.h>
|
|
#include "../../discord/objects.hpp"
|
|
|
|
class GuildSettingsAuditLogPane : public Gtk::ScrolledWindow {
|
|
public:
|
|
GuildSettingsAuditLogPane(Snowflake id);
|
|
|
|
private:
|
|
Gtk::ListBox m_list;
|
|
|
|
void OnAuditLogFetch(const AuditLogData &data);
|
|
|
|
Snowflake GuildID;
|
|
};
|