add linker basis

This commit is contained in:
Jan
2021-03-08 12:46:27 +01:00
parent 39a1485be6
commit e6a91c0305
14 changed files with 538 additions and 84 deletions

24
src/Linker/Linker.h Normal file
View 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;
};