mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-06-06 16:52:35 +00:00
chore: restructure Linker and Unlinker for system testing
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user