Added first compiling version
This commit is contained in:
parent
26d8821665
commit
5453f173ca
11 changed files with 370 additions and 0 deletions
25
include/glimpses/glimpses.hpp
Normal file
25
include/glimpses/glimpses.hpp
Normal file
|
@ -0,0 +1,25 @@
|
|||
// SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
||||
//
|
||||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace glimpses {
|
||||
|
||||
/**
|
||||
* @brief A class for saying hello in multiple languages
|
||||
*/
|
||||
class Glimpses
|
||||
{
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Creates a new glimpses
|
||||
* @param name the name to greet
|
||||
*/
|
||||
Glimpses();
|
||||
};
|
||||
|
||||
} // namespace glimpses
|
Loading…
Add table
Add a link
Reference in a new issue