mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
14 lines
97 B
C++
14 lines
97 B
C++
|
|
#include "depC.h"
|
|
|
|
int DepC::foo()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
DepA DepC::getA()
|
|
{
|
|
DepA a;
|
|
return a;
|
|
}
|