CockatooGame 0.1
Template for CPP projects
Loading...
Searching...
No Matches
example.hpp
Go to the documentation of this file.
1//
2// Created by nicol on 29/12/2024.
3//
4
5#ifndef CPP_TEMPLATE_EXAMPLE_HPP
6#define CPP_TEMPLATE_EXAMPLE_HPP
7
8#include <iostream>
9
10namespace example {
11
16 public:
20 static void printHello();
21};
22
23} // namespace example
24
25#endif // CPP_TEMPLATE_EXAMPLE_HPP
Example class for template.
Definition example.hpp:15
static void printHello()
Prints Hello.
Definition example.cpp:9
Definition example.cpp:7