home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / libg++ / gperf / src / std-err.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-12  |  1.2 KB  |  38 lines

  1. /* This may look like C code, but it is really -*- C++ -*- */
  2.  
  3. /* Provides a useful variable-length argument error handling abstraction.
  4.  
  5.    Copyright (C) 1989 Free Software Foundation, Inc.
  6.    written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  7.  
  8. This file is part of GNU GPERF.
  9.  
  10. GNU GPERF is free software; you can redistribute it and/or modify
  11. it under the terms of the GNU General Public License as published by
  12. the Free Software Foundation; either version 1, or (at your option)
  13. any later version.
  14.  
  15. GNU GPERF is distributed in the hope that it will be useful,
  16. but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. GNU General Public License for more details.
  19.  
  20. You should have received a copy of the GNU General Public License
  21. along with GNU GPERF; see the file COPYING.  If not, write to
  22. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  23.  
  24. #ifndef std_err_h
  25. #define std_err_h 1
  26.  
  27. class Std_Err 
  28. {
  29. private:
  30.   static char *program_name; /* Records the program name. */
  31.    
  32. public:
  33.   static void set_program_name (char *prog_name);
  34.   static void report_error (char *format, ...);
  35. };
  36.  
  37. #endif
  38.