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: 2b66b69be09971ba28ab00d0f23512c2bcc8c21c (
plain
)
1
2
3
4
5
6
7
8
9
10
11
class
Foo
{
public
:
void
bar
() {}
};
void
baz
()
{
Foo foo
;
foo
.
bar
();
}