mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
add linker basis
This commit is contained in:
24
src/Linker/Linker.h
Normal file
24
src/Linker/Linker.h
Normal file
@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
class Linker
|
||||
{
|
||||
class Impl;
|
||||
Impl* m_impl;
|
||||
|
||||
public:
|
||||
Linker();
|
||||
~Linker();
|
||||
|
||||
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.
|
||||
*/
|
||||
bool Start(int argc, const char** argv) const;
|
||||
};
|
Reference in New Issue
Block a user