914382224d
Makes it possible to specify the link dependencies and link interfaces in one command without repetition.
12 lines
82 B
C++
12 lines
82 B
C++
|
|
#include "depB.h"
|
|
|
|
#include "depA.h"
|
|
|
|
int DepB::foo()
|
|
{
|
|
DepA a;
|
|
|
|
return 0;
|
|
}
|