34 lines
649 B
C++
34 lines
649 B
C++
/**
|
|
* @file ObjWellLogTABLE.h
|
|
* @brief 测井多维曲线数据模型
|
|
* @date 2015-2-10
|
|
* @author: WANGWEI
|
|
*/
|
|
#ifndef PAI_FRAME_OSGWELLLOGTABLE_H
|
|
#define PAI_FRAME_OSGWELLLOGTABLE_H
|
|
#pragma warning( push ,0)
|
|
#include <QUuid>
|
|
#include "BaseObject.h"
|
|
#include "ObjWelllog.h"
|
|
// #include "ObjectEvent.h"
|
|
#pragma warning( pop )
|
|
|
|
BEGIN_OSGDATAMODEL_NAMESPACE;
|
|
|
|
class CObjWell;
|
|
|
|
class OSGDATAMODEL_EXPORT CObjWellLogTABLE: public CObjWellLog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CObjWellLogTABLE();
|
|
virtual ~CObjWellLogTABLE();
|
|
virtual QUuid GetTypeID()const;
|
|
};
|
|
|
|
using namespace pai::datamodel;
|
|
using namespace pai::ios::welllog;
|
|
|
|
END_OSGDATAMODEL_NAMESPACE
|
|
#endif
|