LiFan
2024-06-25 e7343e9316ca5833b892c01b52d7d44a21084d54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
 
#include "kcontrol.hpp"
namespace Hxsoft {namespace XFrame
{
    class  IXPages : public IXFControl
    {
    public:
        int SetMaxPage(int mpage);
        int SetCurPage(int cpage);
        int GetMaxPage();
        int GetCurPage();
    };
}}