Doxygen Awesome  v2.3.2
Modern Doxygen theme
Loading...
Searching...
No Matches
example.hpp
Go to the documentation of this file.
1#pragma once
2#include <string>
3
4namespace MyLibrary {
5
6enum Color { red, green, blue };
7
14class Example {
15public:
155 std::string test(const std::string& test);
156
157 virtual int virtualfunc() = 0;
158
159 static bool staticfunc();
160
161
162};
163
165 std::string foo();
166}
167
168}
169
Example class to demonstrate the features of the custom CSS.
Definition example.hpp:14
std::string test(const std::string &test)
brief summary
virtual int virtualfunc()=0
static bool staticfunc()
Definition example.hpp:164
Definition example.hpp:4
Color
Definition example.hpp:6
@ blue
Definition example.hpp:6
@ green
Definition example.hpp:6
@ red
Definition example.hpp:6