17 lines
373 B
C++
17 lines
373 B
C++
#pragma once
|
|
|
|
#include "ShrinkwrapTypes.h"
|
|
|
|
#include <string>
|
|
|
|
class Shrinkwrap90Manager {
|
|
public:
|
|
ShrinkwrapShellResult ExportShell(const ShrinkwrapShellRequest& req);
|
|
|
|
static std::string FormatHhMmSs(long long totalSeconds);
|
|
|
|
private:
|
|
static std::string SanitizeCreoModelName(const std::string& fileStem);
|
|
static std::string FormatFileSize(uintmax_t bytes);
|
|
};
|