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.
30 lines
608 B
C++
30 lines
608 B
C++
#include "PostGraphObjectAgent.h"
|
|
#include "PostGraphObjectBase.h"
|
|
|
|
#include "FITK_Interface/FITKInterfaceCFDPost/FITKAbstractCFDPostData.h"
|
|
|
|
#include <vtkDataSetMapper.h>
|
|
#include <vtkActor.h>
|
|
|
|
namespace Interface
|
|
{
|
|
PostGraphObjectAgent::PostGraphObjectAgent(PostGraphObjectBase* postData) :
|
|
_postData(postData)
|
|
{
|
|
|
|
}
|
|
|
|
PostGraphObjectAgent::~PostGraphObjectAgent()
|
|
{
|
|
if (_postData) {
|
|
delete _postData;
|
|
_postData = nullptr;
|
|
}
|
|
}
|
|
PostGraphObjectBase * PostGraphObjectAgent::getGraphObject()
|
|
{
|
|
return _postData;
|
|
}
|
|
}
|
|
|