home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / gperf / std_err.h < prev    next >
C/C++ Source or Header  |  1993-07-30  |  1KB  |  35 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. #pragma once
  25.  
  26. class Std_Err 
  27. {
  28. private:
  29.   static char *program_name; /* Records the program name. */
  30.    
  31. public:
  32.   static void set_program_name (char *prog_name);
  33.   static void report_error (char *format, ...);
  34. };
  35.