stuff-from-scratch/apps/notes_tk/web_client/WebClientView.h

15 lines
194 B
C
Raw Normal View History

2020-06-27 09:47:30 +00:00
#pragma once
#include "Widget.h"
class WebClientView : public Widget
{
public:
WebClientView();
2023-12-21 09:18:44 +00:00
static Ptr<WebClientView> Create();
2020-06-27 09:47:30 +00:00
};
2023-12-21 09:18:44 +00:00
using WebClientViewUPtr = Ptr<WebClientView>;