Libs/Application/ShapeWorksVtkOutputWindow.h
Namespaces
| Name |
|---|
| shapeworks User usage reporting (telemetry) |
Classes
| Name | |
|---|---|
| class | shapeworks::ShapeWorksVtkOutputWindow Implementation of vtkOutputWindow to capture and display VTK error messages. |
Source code
```cpp
pragma once
include
include
namespace shapeworks {
class ShapeWorksVtkOutputWindow : public QObject, public vtkOutputWindow { Q_OBJECT;
public: static ShapeWorksVtkOutputWindow* New();
vtkTypeMacro(ShapeWorksVtkOutputWindow, vtkOutputWindow);
ShapeWorksVtkOutputWindow();
void DisplayErrorText(const char text) override; void DisplayWarningText(const char text) override; void DisplayGenericWarningText(const char text) override; void DisplayDebugText(const char text) override; private: }; } // namespace shapeworks ```
Updated on 2026-03-31 at 16:02:11 +0000