// TestExecutable.cpp
// Copyright (c) 2001 MBruce
// $Id: //guest/matt_bruce/sampleProject/src/cpp/TestExecutable.cpp#1 $
// This is not a production file. It was only built as part of a
// prototype of the new directory structure
#include <iostream.h>
int main(int argc, char* argv[])
{
cout << "This is the TestExecutable.cpp file" << endl;
cout << "Loaded from $Id: //guest/matt_bruce/sampleProject/src/cpp/TestExecutable.cpp#1 $" << endl;
}