blob: c49ce905b1cf46c05e7ab4f8ef0be9b9f10e33d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "sharedlib.h"
SharedDependLibObject SharedLibObject::object() const
{
SharedDependLibObject sdlo;
return sdlo;
}
int SharedLibObject::foo() const
{
return 0;
}
|