comac_desk_app/PostProcessing/PostTools.h

22 lines
347 B
C
Raw Normal View History

2024-11-21 11:50:43 +08:00
#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