2011-10-07 04:41:37 +04:00
|
|
|
|
|
|
|
#include "depB.h"
|
|
|
|
#include "depC.h"
|
2012-12-26 13:58:21 +04:00
|
|
|
#include "depIfaceOnly.h"
|
2011-10-07 04:41:37 +04:00
|
|
|
|
2012-11-25 04:15:44 +04:00
|
|
|
#include "subdirlib.h"
|
|
|
|
|
2013-03-07 01:54:49 +04:00
|
|
|
int main(int, char **)
|
2011-10-07 04:41:37 +04:00
|
|
|
{
|
|
|
|
DepA a;
|
|
|
|
DepB b;
|
|
|
|
DepC c;
|
|
|
|
|
2012-12-26 13:58:21 +04:00
|
|
|
DepIfaceOnly iface_only;
|
|
|
|
|
2012-11-25 04:15:44 +04:00
|
|
|
SubDirLibObject sd;
|
|
|
|
|
|
|
|
return a.foo() + b.foo() + c.foo() + iface_only.foo() + sd.foo();
|
2011-10-07 04:41:37 +04:00
|
|
|
}
|