// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #ifndef vtkWrapped_h #define vtkWrapped_h #include "vtkWrappableModule.h" // for export macro #include "vtkObject.h" #include // for std::string class VTKWRAPPABLE_EXPORT vtkWrapped : public vtkObject { public: static vtkWrapped* New(); vtkTypeMacro(vtkWrapped, vtkObject); void PrintSelf(ostream& os, vtkIndent indent) override; std::string GetString() const; protected: vtkWrapped(); ~vtkWrapped() override; private: vtkWrapped(const vtkWrapped&) = delete; void operator=(const vtkWrapped&) = delete; }; #endif