16 lines
293 B
C++
16 lines
293 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "nix-gcc-multi-issue/nix-gcc-multi-issue.hpp"
|
|
|
|
exported_class::exported_class()
|
|
: m_name {"nix-gcc-multi-issue"}
|
|
{
|
|
std::cout << "Hello, World!" << std::endl;
|
|
}
|
|
|
|
auto exported_class::name() const -> char const*
|
|
{
|
|
return m_name.c_str();
|
|
}
|