xj qian
2024-07-01 2ae36e271599ea723348132dd7c8a7e139162d18
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;
    }
};