13 lines
177 B
C++
13 lines
177 B
C++
|
|
||
|
#include "sharedlib.h"
|
||
|
|
||
|
SharedDependLibObject SharedLibObject::object() const
|
||
|
{
|
||
|
SharedDependLibObject sdlo;
|
||
|
return sdlo;
|
||
|
}
|
||
|
int SharedLibObject::foo() const
|
||
|
{
|
||
|
return 0;
|
||
|
}
|