mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
25 lines
690 B
C++
25 lines
690 B
C++
#pragma once
|
|
#include <memory>
|
|
|
|
class Linker
|
|
{
|
|
public:
|
|
Linker() = default;
|
|
virtual ~Linker() = default;
|
|
|
|
Linker(const Linker& other) = delete;
|
|
Linker(Linker&& other) noexcept = delete;
|
|
Linker& operator=(const Linker& other) = delete;
|
|
Linker& operator=(Linker&& other) noexcept = delete;
|
|
|
|
/**
|
|
* \brief Starts the Linker application logic.
|
|
* \param argc The amount of command line arguments specified.
|
|
* \param argv The command line arguments.
|
|
* \return \c true if the application was successful or \c false if an error occurred.
|
|
*/
|
|
virtual bool Start(int argc, const char** argv) = 0;
|
|
|
|
static std::unique_ptr<Linker> Create();
|
|
};
|