disallow buffer change, include string dependency

This commit is contained in:
yggverse 2024-08-16 21:54:06 +03:00
parent 626997af14
commit f1e5714456
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,7 @@ Content::Content()
Content::~Content() = default; Content::~Content() = default;
void Content::set( void Content::set(
string buffer const string & buffer
) { ) {
// @TODO // @TODO
} }

View File

@ -3,6 +3,8 @@
#include <gtkmm/box.h> #include <gtkmm/box.h>
#include <string>
namespace app::browser::main::tab::page namespace app::browser::main::tab::page
{ {
class Content : public Gtk::Box class Content : public Gtk::Box
@ -14,7 +16,7 @@ namespace app::browser::main::tab::page
~Content(); ~Content();
void set( void set(
std::string buffer const std::string & buffer
); );
}; };
} }