16 lines
138 B
C++
16 lines
138 B
C++
|
|
#include "depB.h"
|
|
|
|
#include "depA.h"
|
|
|
|
#include "libgenex.h"
|
|
|
|
int DepB::foo()
|
|
{
|
|
DepA a;
|
|
|
|
LibGenex lg;
|
|
|
|
return a.foo() + lg.foo();
|
|
}
|