14 lines
194 B
C++
14 lines
194 B
C++
#pragma once
|
|
|
|
#include "Widget.h"
|
|
|
|
class WebClientView : public Widget
|
|
{
|
|
public:
|
|
|
|
WebClientView();
|
|
|
|
static Ptr<WebClientView> Create();
|
|
};
|
|
|
|
using WebClientViewUPtr = Ptr<WebClientView>;
|