mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-24 08:53:04 +00:00
20 lines
379 B
C++
20 lines
379 B
C++
#pragma once
|
|
|
|
#include "UnlinkerArgs.h"
|
|
|
|
#include <memory>
|
|
|
|
class Unlinker
|
|
{
|
|
public:
|
|
virtual ~Unlinker() = default;
|
|
|
|
static std::unique_ptr<Unlinker> Create(UnlinkerArgs args);
|
|
|
|
/**
|
|
* \brief Starts the Unlinker application logic.
|
|
* \return \c true if the application was successful or \c false if an error occurred.
|
|
*/
|
|
virtual bool Start() = 0;
|
|
};
|