8 lines
94 B
C++
8 lines
94 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class A {
|
|
public:
|
|
void method(const std::string& msg);
|
|
};
|