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.
68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkDummyCommunicator.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm 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.
|
|
|
|
=========================================================================*/
|
|
|
|
/**
|
|
* @class vtkDummyCommunicator
|
|
* @brief Dummy controller for single process applications.
|
|
*
|
|
*
|
|
*
|
|
* This is a dummy communicator, which can be used by applications that always
|
|
* require a controller but are also compiled on systems without threads or MPI.
|
|
* Because there is always only one process, no real communication takes place.
|
|
*
|
|
*/
|
|
|
|
#ifndef vtkDummyCommunicator_h
|
|
#define vtkDummyCommunicator_h
|
|
|
|
#include "vtkCommunicator.h"
|
|
#include "vtkParallelCoreModule.h" // For export macro
|
|
|
|
class VTKPARALLELCORE_EXPORT vtkDummyCommunicator : public vtkCommunicator
|
|
{
|
|
public:
|
|
vtkTypeMacro(vtkDummyCommunicator, vtkCommunicator);
|
|
static vtkDummyCommunicator* New();
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
//@{
|
|
/**
|
|
* Since there is no one to communicate with, these methods just report an
|
|
* error.
|
|
*/
|
|
int SendVoidArray(const void*, vtkIdType, int, int, int) override
|
|
{
|
|
vtkWarningMacro("There is no one to send to.");
|
|
return 0;
|
|
}
|
|
int ReceiveVoidArray(void*, vtkIdType, int, int, int) override
|
|
{
|
|
vtkWarningMacro("There is no one to receive from.");
|
|
return 0;
|
|
}
|
|
//@}
|
|
|
|
protected:
|
|
vtkDummyCommunicator();
|
|
~vtkDummyCommunicator() override;
|
|
|
|
private:
|
|
vtkDummyCommunicator(const vtkDummyCommunicator&) = delete;
|
|
void operator=(const vtkDummyCommunicator&) = delete;
|
|
};
|
|
|
|
#endif // vtkDummyCommunicator_h
|