LibOFX

messages.hh

Go to the documentation of this file.
00001 /***************************************************************************
00002                           ofx_messages.h
00003                              -------------------
00004     copyright            : (C) 2002 by Benoit Gr�goire
00005     email                : benoitg@coeus.ca
00006  ***************************************************************************/
00010 /***************************************************************************
00011  *                                                                         *
00012  *   This program is free software; you can redistribute it and/or modify  *
00013  *   it under the terms of the GNU General Public License as published by  *
00014  *   the Free Software Foundation; either version 2 of the License, or     *
00015  *   (at your option) any later version.                                   *
00016  *                                                                         *
00017  ***************************************************************************/
00018 #ifndef OFX_MESSAGES_H
00019 #define OFX_MESSAGES_H
00020 
00023 enum OfxMsgType
00024 {
00025   DEBUG,       
00026   DEBUG1,      
00027   DEBUG2,      
00028   DEBUG3,      
00029   DEBUG4,      
00030   DEBUG5,      
00031   STATUS = 10, 
00032   INFO,        
00033   WARNING,     
00034   ERROR,       
00035   PARSER       
00036 };
00037 using namespace std;
00039 int message_out(OfxMsgType type, const string message);
00040 
00041 #endif