Files
ThirdParty-6/ParaView-5.0.1/ParaViewCore/ServerManager/Core/vtkSMSessionObject.cxx

62 lines
1.8 KiB
C++

/*=========================================================================
Program: ParaView
Module: vtkSMSessionObject.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkSMSessionObject.h"
#include "vtkObjectFactory.h"
#include "vtkSMProxyManager.h"
#include "vtkSMSession.h"
#include "vtkSMSessionProxyManager.h"
vtkStandardNewMacro(vtkSMSessionObject);
//---------------------------------------------------------------------------
vtkSMSessionObject::vtkSMSessionObject()
{
}
//---------------------------------------------------------------------------
vtkSMSessionObject::~vtkSMSessionObject()
{
}
//----------------------------------------------------------------------------
vtkSMSessionProxyManager* vtkSMSessionObject::GetSessionProxyManager()
{
return
vtkSMProxyManager::GetProxyManager()->GetSessionProxyManager(this->Session);
}
//----------------------------------------------------------------------------
vtkSMSession* vtkSMSessionObject::GetSession()
{
return this->Session;
}
//----------------------------------------------------------------------------
void vtkSMSessionObject::SetSession(vtkSMSession* session)
{
if (this->Session != session)
{
this->Session = session;
this->Modified();
}
}
//---------------------------------------------------------------------------
void vtkSMSessionObject::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Session: " << this->Session << endl;
}