Foxit PDF SDK
fs_ofdblockobject.h
1 #ifndef FS_OFD_BLOCKOBJECT_H_
2 #define FS_OFD_BLOCKOBJECT_H_
3 
4 #include "common/fs_common.h"
5 
11 namespace foxit {
15 namespace ofd {
19 namespace graphics {
21 class OFDBlockObject FS_FINAL : public foxit::ofd::OFDLayer {
22  public:
29 
32 
38  OFDBlockObject(const OFDBlockObject& other);
39 
48 
56  bool operator == (const OFDBlockObject& other) const;
57 
65  bool operator != (const OFDBlockObject& other) const;
66 
74  bool IsEmpty() const;
75 
76  explicit OFDBlockObject(FS_HANDLE handle);
77 };
78 
79 } // namespace graphics
80 } // namespace ofd
81 } // namespace foxit
82 
83 #endif // FS_OFD_BLOCKOBJECT_H_
bool operator !=(const OFDBlockObject &other) const
不相等操作符。
Definition: fs_ofdgraphicsobject.h:177
bool IsEmpty() const
检查当前对象是否为空。
OFDBlockObject(foxit::ofd::graphics::OFDGraphicsObject object)
构造函数,从现有foxit::ofd::graphics::OFDGraphicsObject对象。
Definition: fs_ofdblockobject.h:21
void * FS_HANDLE
句柄类型。
Definition: fs_basictypes.h:213
bool operator==(const OFDBlockObject &other) const
相等操作符。
通用定义和类的头文件。
Foxit命名空间。
Definition: fs_pdf3d.h:26
OFDBlockObject & operator=(const OFDBlockObject &other)
赋值操作符。
Definition: fs_ofdlayer.h:31