mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
24 lines
650 B
C++
24 lines
650 B
C++
#pragma once
|
|
|
|
class Unlinker
|
|
{
|
|
class Impl;
|
|
Impl* m_impl;
|
|
|
|
public:
|
|
Unlinker();
|
|
~Unlinker();
|
|
|
|
Unlinker(const Unlinker& other) = delete;
|
|
Unlinker(Unlinker&& other) noexcept = delete;
|
|
Unlinker& operator=(const Unlinker& other) = delete;
|
|
Unlinker& operator=(Unlinker&& other) noexcept = delete;
|
|
|
|
/**
|
|
* \brief Starts the Unlinker 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.
|
|
*/
|
|
bool Start(int argc, const char** argv) const;
|
|
}; |