errorhandler.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KABC_ERRORHANDLER_H
00022 #define KABC_ERRORHANDLER_H
00023
00024 #include <qstring.h>
00025
00026 namespace KABC {
00027
00035 class ErrorHandler
00036 {
00037 public:
00038 virtual void error( const QString& msg ) = 0;
00039 };
00040
00045 class ConsoleErrorHandler : public ErrorHandler
00046 {
00047 public:
00048 virtual void error( const QString& msg );
00049 };
00050
00055 class GUIErrorHandler : public ErrorHandler
00056 {
00057 public:
00058 virtual void error( const QString& msg );
00059 };
00060
00061 }
00062 #endif
This file is part of the documentation for kdelibs Version 3.1.5.