CoreLinux++  0.4.32
TransientStorage.hpp
1 #if !defined(__TRANSIENTSTORAGE_HPP)
2 #define __TRANSIENTSTORAGE_HPP
3 
4 /*
5  CoreLinux++
6  Copyright (C) 1999,2000 CoreLinux Consortium
7 
8  The CoreLinux++ Library is free software; you can redistribute it and/or
9  modify it under the terms of the GNU Library General Public License as
10  published by the Free Software Foundation; either version 2 of the
11  License, or (at your option) any later version.
12 
13  The CoreLinux++ Library Library is distributed in the hope that it will
14  be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  Library General Public License for more details.
17 
18  You should have received a copy of the GNU Library General Public
19  License along with the GNU C Library; see the file COPYING.LIB. If not,
20  write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  Boston, MA 02111-1307, USA.
22 */
23 
24 #if !defined(__COMMON_HPP)
25 #include <Common.hpp>
26 #endif
27 
28 #if !defined(__STORAGE_HPP)
29 #include <Storage.hpp>
30 #endif
31 
32 namespace corelinux
33 {
34  DECLARE_CLASS( TransientStorage );
35 
41  class TransientStorage : public Storage
42  {
43 
44  public:
45 
46  //
47  // Constructors and destructor
48  //
49 
50  TransientStorage( void );
52  virtual ~TransientStorage( void );
53 
54  //
55  // Operator overloads
56  //
57 
59  bool operator==( TransientStorageCref ) const;
60 
61 
62  protected:
63 
64  private:
65 
66  };
67 }
68 
69 #endif // if !defined(__TRANSIENTSTORAGE_HPP)
70 
71 /*
72  Common rcs information do not modify
73  $Author: prudhomm $
74  $Revision: 1.1 $
75  $Date: 2000/04/23 20:43:13 $
76  $Locker: $
77 */
78 
79 
TransientStorage type is an area of storage that will not be saved across system initializations.
Definition: TransientStorage.hpp:41
Storage is the abstract type for anything that can be use to store and read (e.g. ...
Definition: Storage.hpp:37
Forward reference the various common classes.
Definition: AbstractAllocator.hpp:32

This is the CoreLinux++ reference manual
Provided by The CoreLinux Consortium