Demo 0.0.1
Example C++ project
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1//
2// Copyright (c) Zhanwei Wang (me@zhanwei.wang)
3// Licenced under Apache License Version 2.0. See LICENSE for details.
4//
5#ifndef DEMO_SRC_DEMO_COMMON_UTILS_H
6#define DEMO_SRC_DEMO_COMMON_UTILS_H
7
8#include <string>
9
10namespace demo {
14class utils {
15 public:
20 std::string generate_greeting_string();
21};
22} // namespace demo
23
24#endif // DEMO_SRC_DEMO_COMMON_UTILS_H
Utility used to generate greeting information.
Definition utils.h:14
std::string generate_greeting_string()
Generate greeting information.
Definition utils.cpp:8
Definition greeting.cpp:12