12 lines
165 B
C++
12 lines
165 B
C++
#ifndef HELLOWORLD_H
|
|
#define HELLOWORLD_H
|
|
|
|
#include <string>
|
|
|
|
class HelloWorld {
|
|
public:
|
|
void printMessage(const std::string &message);
|
|
};
|
|
|
|
#endif // HELLOWORLD_H
|