//One of the headers used in a static library.
//
//First, compile it with
//
//$ g++ -c -o georgeringo.o georgeringo.cc
//
//OPTIONS:    -c do not run the linker
//            -o name of the object file
//
//It will then be made into a DYNAMIC LIBRARY with the following
//
//$ g++ -shared -fPIC -o libgeorgeringo.so george.o ringo.o georgeringo.o
#include "george.hh"
#include "ringo.hh"
#include "georgeringo.hh"

void georgeringo( )
{
    george( );
    ringo( );
}
