Files
abaddon/components/channels.hpp
2020-08-17 02:40:03 -04:00

13 lines
188 B
C++

#pragma once
#include <gtkmm.h>
class ChannelList {
public:
ChannelList();
Gtk::Widget *GetRoot() const;
protected:
Gtk::ListBox *m_list;
Gtk::ScrolledWindow *m_main;
};