00001
#if !defined(__TRANSIENTSTORAGE_HPP)
00002
#define __TRANSIENTSTORAGE_HPP
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
#if !defined(__COMMON_HPP)
00025
#include <Common.hpp>
00026
#endif
00027
00028
#if !defined(__STORAGE_HPP)
00029
#include <Storage.hpp>
00030
#endif
00031
00032
namespace corelinux
00033 {
00034 DECLARE_CLASS( TransientStorage );
00035
00041 class TransientStorage :
public Storage
00042 {
00043
00044
public:
00045
00046
00047
00048
00049
00050
TransientStorage(
void );
00051
TransientStorage(
TransientStorageCref );
00052
virtual ~
TransientStorage(
void );
00053
00054
00055
00056
00057
00058
TransientStorageRef operator=(
TransientStorageCref );
00059
bool operator==(
TransientStorageCref )
const;
00060
00061
00062
protected:
00063
00064
private:
00065
00066 };
00067 }
00068
00069
#endif // if !defined(__TRANSIENTSTORAGE_HPP)
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079