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