mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-29 20:34:20 +00:00
11 lines
167 B
C++
11 lines
167 B
C++
|
|
#include "testSharedLibRequiredUser.h"
|
|
|
|
#include "testSharedLibRequired.h"
|
|
|
|
int TestSharedLibRequiredUser::foo()
|
|
{
|
|
TestSharedLibRequired req;
|
|
return req.foo();
|
|
}
|