Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

File.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------+
00002  | Library QgarLib, graphics analysis and recognition                  |
00003  | Copyright (C) 2002  Qgar Project, LORIA                             |
00004  |                                                                     |
00005  | This library is free software; you can redistribute it and/or       |
00006  | modify it under the terms of the GNU Lesser General Public          |
00007  | License version 2.1, as published by the Free Software Foundation.  |
00008  |                                                                     |
00009  | This library is distributed in the hope that it will be useful,     |
00010  | but WITHOUT ANY WARRANTY; without even the implied warranty of      |
00011  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                |
00012  | See the GNU Lesser General Public License for more details.         |
00013  |                                                                     |
00014  | The GNU Lesser General Public License is included in the file       |
00015  | LICENSE.LGPL, in the root directory of the Qgar packaging. See      |
00016  | http://www.gnu.org/licenses/lgpl.html for the terms of the licence. |
00017  | To receive a paper copy, write to the Free Software Foundation,     |
00018  | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.       |
00019  |                                                                     |
00020  | Contact Project Qgar for any information:                           |
00021  |   LORIA - équipe Qgar                                               |
00022  |   B.P. 239, 54506 Vandoeuvre-lès-Nancy Cedex, France                |
00023  |   email: qgar-contact@loria.fr                                      |
00024  |   http://www.qgar.org/                                              |
00025  *---------------------------------------------------------------------*/
00026 
00027 
00028 #ifndef __FILE_H_INCLUDED__
00029 #define __FILE_H_INCLUDED__
00030 
00031 
00032 /**
00033  * @file   File.H
00034  * @brief  Header file of class qgar::File.
00035  *
00036  * @author <a href="mailto:qgar-develop@loria.fr?subject=Qgar fwd Gérald Masini">Gérald Masini</a>
00037  * @date   Jul, 3  2001  18:00
00038  * @since  Qgar 1.0
00039  */
00040 
00041 // For RCS/CVS use: Do not delete
00042 /* $Id: File.H,v 1.13 2005/07/13 16:29:01 masini Exp $ */
00043 
00044 
00045 
00046 // QGAR
00047 #include <qgarlib/AbstractFile.H>
00048 
00049 
00050 
00051 namespace qgar
00052 {
00053 
00054 /**
00055  * @class File File.H "qgarlib/File.H"
00056  * @ingroup IO_FILE
00057  * @brief Qgar regular file.
00058  *
00059  * To be typically used to save and restore serialized objects.
00060  *
00061  * @author <a href="mailto:qgar-develop@loria.fr?subject=Qgar fwd Gérald Masini">Gérald Masini</a>
00062  * @date   Jul, 3  2001  18:00
00063  * @since  Qgar 1.0
00064  */
00065 class File
00066 
00067   : public AbstractFile
00068 
00069 {
00070 // -------------------------------------------------------------------
00071 // P U B L I C    M E M B E R S
00072 // -------------------------------------------------------------------
00073 public:
00074 
00075   /** @name Constructors */
00076   //        ============
00077   //@{
00078 
00079   /**
00080    * @brief Create a file with given name.
00081    * @param aFileName name of the file to be created
00082    *
00083    * @warning The file is closed and must be opened to be used.
00084    */
00085   File(const char* aFileName);
00086 
00087   //@}
00088 
00089 
00090   /** @name Destructor */
00091   //        ==========
00092   //@{
00093 
00094   /**
00095    * @brief Virtual destructor.
00096    */
00097   virtual ~File();
00098 
00099   //@}
00100 
00101 // -------------------------------------------------------------------
00102 // P R O T E C T E D    M E M B E R S
00103 // -------------------------------------------------------------------
00104 protected:
00105 
00106   /** @name Headers & footers */
00107   //        =================
00108   //@{
00109 
00110   /**
00111    * @brief Default to read file header: No effect.
00112    */
00113   virtual void readHeader();
00114 
00115   /**
00116    * @brief Default to write header into the file: No effect.
00117    */
00118   virtual void writeHeader();
00119 
00120   /**
00121    * @brief Default to write footer into the file: No effect.
00122    */
00123   virtual void writeFooter();
00124 
00125   //@}
00126 
00127 // -------------------------------------------------------------------
00128 }; // class File
00129 
00130 } // namespace qgar 
00131 
00132 
00133 #endif /* __FILE_H_INCLUDED__ */