mirror of
https://github.com/reactos/CMake.git
synced 2024-11-29 06:20:23 +00:00
771f1b00dc
We will soon generalize it to cover other visibility properties.
12 lines
79 B
C++
12 lines
79 B
C++
class Foo
|
|
{
|
|
public:
|
|
void bar() {}
|
|
};
|
|
|
|
void baz()
|
|
{
|
|
Foo foo;
|
|
foo.bar();
|
|
}
|