C++ Library Template  v1.2.1
Utilizing CMake and Conan
example.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <string>
3 
4 namespace MyLibrary {
5 
9 class Example {
10 public:
11  std::string test(const std::string& test);
12 };
13 
14 }
15 
Definition: example.hpp:9
std::string test(const std::string &test)
Definition: example.hpp:4