index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Tests
/
Visibility
/
foo.cpp
blob: 8373fd25f9013ed0bc3ef42ef07753fe68103c99 (
plain
)
1
2
3
4
5
6
7
8
9
10
11
class
Foo
{
public
:
void
bar
() {}
};
void
baz
()
{
Foo foo
;
foo
.
bar
();
}