xj qian
2024-06-26 6f5ed784c0cac43d8ec74e61a39b668af76c7d13
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
 
#include "kcontrol.hpp"
 
namespace Hxsoft {    namespace XFrame {
    class IDwView : public IXFControl
    {
    public:
        enum RowStatus { rs_new = 0, rs_newmodified, rs_datamodified, rs_datanotmodified };
        enum DWBuffer { dbuf_normal = 0, dbuf_filter, dbuf_delete };
    };
}}