https://github.com/Kitware/CMake
Raw File
Tip revision: efaa9efece0786a80243d005e35e68f18999eb0e authored by Brad King on 03 June 2024, 18:28:41 UTC
CMake 3.29.4
Tip revision: efaa9ef
foo.cpp
class Foo
{
public:
  void bar() {}
};

void baz()
{
  Foo foo;
  foo.bar();
}
back to top