📄 ocicmplx.h
字号:
#ifndef _COCIComplexObject
#define _COCIComplexObject
#ifdef sparc
// used for bool definition
#include <stl_config.h>
#define std
#endif
#ifndef OCI_ORACLE
#include "oci.h"
#endif
class COCISession;
class COCIObject;
class COCIRef;
class COCIComplexObject
{
friend class COCIObject;
friend class COCIRef;
public:
COCIComplexObject(const COCISession& sess, const COCIObject& root, unsigned long level = 1);
~COCIComplexObject();
void set_level(unsigned long level);
unsigned long get_level(){return m_Level;}
void set_outofline(bool outofline = false);
private:
void set();
private:
const COCISession& m_Session;
const COCIObject& m_Root;
OCIComplexObject *m_corhp;
OCIComplexObjectComp *m_cordp;
unsigned long m_Level;
unsigned char m_OutOfLine;
};
#endif // _COCIComplexObject
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -