/** * A minimal program to use the types A and B that * are defined in A.h and B.h * (By minimal, I mean that the program does literally nothing.) * * @author gtowell * Created: April 6, 2021 * **/ #include "a.h" #include "b.h" B b; A a; int main(int argc, char const *argv[]) { /* code */ return 0; }