File: errorshow.h

package info (click to toggle)
apt 0.3.10slink11
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,136 kB
  • ctags: 2,891
  • sloc: cpp: 22,235; sh: 1,656; makefile: 338; perl: 209
file content (20 lines) | stat: -rw-r--r-- 621 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -*- mode: cpp; mode: fold -*-
// Description								/*{{{*/
// $Id: errorshow.h,v 1.1 1998/09/12 02:46:54 jgg Exp $
/* ######################################################################

   Error Show - Show errors from the apt-pkg error class.

   This should be called when an apt-pkg function fails. It will display
   a dialog box with an errors/warnings that occured or do nothing.
   
   ##################################################################### */
									/*}}}*/
#ifndef ERRORSHOW_H
#define ERRORSHOW_H

#include <string>

bool ShowErrors(string Reason = string(),bool Fatal = false);

#endif