// test.cc
// just a simple C++ test program to see what switches I
// need to compile it

#include <iostream.h>    // count

// try to pull in something from my parent directory
#include "rcptr.h"

int main()
{
  cout << "test.cc works\n";
  return 0;
}

