draft gemini connector, remove sigc, implement destructor

This commit is contained in:
yggverse 2024-08-16 17:56:42 +03:00
parent de312cdcb0
commit a741f1edca
4 changed files with 77 additions and 57 deletions

View file

@ -1,6 +1,7 @@
#include "content.hpp"
using namespace app::browser::main::tab::page;
using namespace std;
Content::Content()
{
@ -14,3 +15,9 @@ Content::Content()
}
Content::~Content() = default;
void Content::set(
string buffer
) {
// @TODO
}