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