Makes it possible to specify the link dependencies and link interfaces in one command without repetition.
13 lines
96 B
C++
13 lines
96 B
C++
|
|
#include "depC.h"
|
|
|
|
int DepC::foo()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
DepA DepC::getA()
|
|
{
|
|
DepA a;
|
|
return a;
|
|
} |