00001 
00023 #ifndef LONESTAR_BANNER_H
00024 #define LONESTAR_BANNER_H
00025 
00026 #include <iosfwd>
00027 
00029 void printBanner(std::ostream& os, const char* app, const char* desc, const char* url) {
00030   os << "\nLonestar Benchmark Suite v3.0 (C++)\n"
00031        << "Copyright (C) 2011 The University of Texas at Austin\n"
00032        << "http://iss.ices.utexas.edu/lonestar/\n"
00033        << "\n"
00034        << "application: " << app << "\n";
00035   if (desc)
00036     os << desc << "\n";
00037   if (url) {
00038     os 
00039       << "http://iss.ices.utexas.edu/?p=projects/galois/benchmarks/" 
00040       << url << "\n";
00041   }
00042   os << "\n";
00043 }
00044 #endif