Precommit (#1)

* first commit

* cleanup
This commit is contained in:
tompzf
2025-11-04 13:28:06 +01:00
committed by GitHub
parent dba45dc636
commit 6ed4b1534e
898 changed files with 256340 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#ifndef CMAKE_GENERATOR_H
#define CMAKE_GENERATOR_H
#include <filesystem>
#include <string>
#include "codegen_base.h"
/**
* @brief CMake generator class.
*/
class CDbcUtilCMakeGenerator : public CCodeGeneratorBase
{
public:
/**
* @brief Constructor
* @param[in] rpathOutputDir Reference to the outpur directory.
* @param[in] rssComponent Current component this CMake file is for.
*/
CDbcUtilCMakeGenerator(const std::filesystem::path& rpathOutputDir, const std::string& rssComponent);
/**
* @brief Destructor
*/
virtual ~CDbcUtilCMakeGenerator();
private:
std::filesystem::path m_pathProject; ///< Project file path
};
#endif // !defined CMAKE_GENERATOR_H