You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.7 KiB
C

/**********************************************************************
* @file PostGraphObjectAgent.h
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*********************************************************************/
#ifndef _PostGraphObjectAgent_H
#define _PostGraphObjectAgent_H
#include "PostGraphAdaptorAPI.h"
#include "FITK_Kernel/FITKCore/FITKAbstractDataObject.h"
namespace Interface
{
class PostGraphObjectBase;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
class PostGraphAdaptorAPI PostGraphObjectAgent : public Core::FITKAbstractDataObject
{
Q_OBJECT;
public:
/**
* @brief
* @param[i] postData
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
explicit PostGraphObjectAgent(PostGraphObjectBase* postData);
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
~PostGraphObjectAgent();
/**
* @brief
* @return PostGraphObjectBase*
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
PostGraphObjectBase* getGraphObject();
protected:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-06
*/
PostGraphObjectBase* _postData = nullptr;
};
}
#endif