LiFan
2024-07-01 36e15ec86bac42c3bd48a30b65a09dc93765e1d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
 
#include <wobject/xwin.hpp>
#include <wobject/xurl.hpp>
#include <wobject/xapp.hpp>
class responsewin : public xwin
{
public:
    responsewin(void* impl, HWND hWnd) :xwin(impl, hWnd) {}
    int onload()
    {
        return 1;
    }
};