14 lines
143 B
C++
14 lines
143 B
C++
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
class Test
|
|
{
|
|
public:
|
|
std::string message;
|
|
|
|
Test(std::string msg);
|
|
|
|
public:
|
|
void Hello();
|
|
}; |