Main Page   Class Hierarchy   Compound List   File List   Compound Members   Related Pages  

state_file.h

00001 //
00002 // state_file.h
00003 //
00004 // Copyright (C) 1996 Limit Point Systems, Inc.
00005 //
00006 // Author: Curtis Janssen <cljanss@limitpt.com>
00007 // Maintainer: LPS
00008 //
00009 // This file is part of the SC Toolkit.
00010 //
00011 // The SC Toolkit is free software; you can redistribute it and/or modify
00012 // it under the terms of the GNU Library General Public License as published by
00013 // the Free Software Foundation; either version 2, or (at your option)
00014 // any later version.
00015 //
00016 // The SC Toolkit is distributed in the hope that it will be useful,
00017 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019 // GNU Library General Public License for more details.
00020 //
00021 // You should have received a copy of the GNU Library General Public License
00022 // along with the SC Toolkit; see the file COPYING.LIB.  If not, write to
00023 // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
00024 //
00025 // The U.S. Government is granted a limited license as per AL 91-7.
00026 //
00027 
00028 #ifndef _util_state_state_file_h
00029 #define _util_state_state_file_h
00030 
00031 #ifdef __GNUC__
00032 #pragma interface
00033 #endif
00034 
00035 #include <stdlib.h>
00036 #include <iostream>
00037 #include <iomanip>
00038 
00039 #include <util/state/state.h>
00040 #include <util/state/statein.h>
00041 #include <util/state/stateout.h>
00042 
00045 class StateOutFile: public StateOut {
00046   private:
00047     // do not allow copy constructor or assignment
00048     StateOutFile(const StateOutFile&);
00049     void operator=(const StateOutFile&);
00050   protected:
00051     int opened_;
00052     std::streambuf *buf_;
00053   public:
00055     StateOutFile();
00057     StateOutFile(std::ostream& s);
00059     StateOutFile(const char *name);
00060 
00061     ~StateOutFile();
00062 
00064     virtual int open(const char *name);
00066     virtual void flush();
00068     virtual void close();
00069   };
00070 
00073 class StateInFile: public StateIn {
00074   private:
00075     // do not allow copy constructor or assignment
00076     StateInFile(const StateInFile&);
00077     void operator=(const StateInFile&);
00078   protected:
00079     int opened_;
00080     std::streambuf *buf_;
00081   public:
00083     StateInFile();
00085     StateInFile(std::istream& s);
00087     StateInFile(const char *name);
00088 
00089     ~StateInFile();
00090 
00092     virtual int open(const char *name);
00094     virtual void close();
00095   };
00096 
00097 #endif
00098 
00099 // Local Variables:
00100 // mode: c++
00101 // c-file-style: "CLJ"
00102 // End:

Generated at Thu Oct 4 18:08:47 2001 for MPQC 2.0.0 using the documentation package Doxygen 1.2.5.