Layout
Some checks failed
Bigfoot / Build & Test Debug (push) Successful in 45s
Bigfoot / Build & Test RelWithDebInfo (push) Successful in 1m3s
Bigfoot / Build & Test Release (push) Successful in 33s
Bigfoot / Clang Format Checks (push) Failing after 9s

This commit is contained in:
2026-02-16 21:02:47 +01:00
parent 16cebe427e
commit dac5cbe20d
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/*********************************************************************
* \file Generator.cpp
*
* \author Romain BOULLARD
* \date February 2026
*********************************************************************/
#include <Generator.hpp>
namespace Bin2CPP
{
} // namespace Bin2CPP

View File

@@ -0,0 +1,14 @@
/*********************************************************************
* \file Generator.hpp
*
* \author Romain BOULLARD
* \date February 2026
*********************************************************************/
#ifndef BIN2CPP_GENERATOR_HPP
#define BIN2CPP_GENERATOR_HPP
namespace Bin2CPP
{
} // namespace Bin2CPP
#endif

View File

@@ -0,0 +1,20 @@
/*********************************************************************
* \file Generator.cpp
*
* \author Romain BOULLARD
* \date February 2026
*********************************************************************/
#include <Generator.hpp>
#include <Log.hpp>
#include <gtest/gtest.h>
namespace Bin2CPP
{
class GeneratorFixture: public ::testing::Test
{
protected:
Singleton<Log>::Lifetime m_lifetime;
};
} // namespace Bin2CPP