12 lines
220 B
C++
12 lines
220 B
C++
#pragma once
|
|
|
|
#include <gtkmm/button.h>
|
|
#include <gtkmm/popover.h>
|
|
|
|
#include "components/popover.hpp"
|
|
|
|
class WebWidget : public Popover {
|
|
public:
|
|
WebWidget(std::string icon, std::string title, std::string url);
|
|
};
|