C/C++
extract.txt
Associated article: Extraction and Examination of Relations in C++
Tags: C/C++ Tools Design
Published source code accompanying the article by Keith Paton in which he discusses design flaws can be that can automatically detected, as long as you can extract and manipulate sets of key relationships among the entities in C++ systems.
Extraction and Examination of Relations in C++ Systems
by Keith Paton
Example 1:
(a)
a.cxx
#include "a.h"
#include "b.h"
int A::foo(B *aBptr);
{
return aBptr->foo();
}
(b)
a.cxx
#include "a....


