22 lines
347 B
C++
22 lines
347 B
C++
#ifndef POSTTOOLS_H
|
|
#define POSTTOOLS_H
|
|
|
|
#include <QString.h>
|
|
|
|
class vtkWindow;
|
|
|
|
namespace pst
|
|
{
|
|
class PostTools
|
|
{
|
|
public:
|
|
PostTools() = default;
|
|
~PostTools() = default;
|
|
|
|
public:
|
|
static void saveImageFromScreen(vtkWindow* window, int width, int height, QString fileName, bool autoSize);
|
|
|
|
};
|
|
}
|
|
#endif
|