103 lines
2.6 KiB
C++
103 lines
2.6 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
/* The nsMemCacheObject class holds the actual nsCacheObject and a pointer
|
|
* to the next nsMemCacheObject. Pretty simple solution for the time being.
|
|
* Should be replaced once the memory hash table stuff gets up and running.
|
|
*
|
|
* -Gagan Saksena 09/15/98.
|
|
*/
|
|
|
|
#ifndef _nsMemCacheObject_h_
|
|
#define _nsMemCacheObject_h_
|
|
|
|
#include "prtypes.h"
|
|
#include "prlog.h"
|
|
#include "nsCacheObject.h"
|
|
|
|
class nsMemCacheObject
|
|
{
|
|
public:
|
|
|
|
nsMemCacheObject(void);
|
|
nsMemCacheObject(nsCacheObject* io_pObject);
|
|
nsMemCacheObject(const char* i_url);
|
|
~nsMemCacheObject();
|
|
|
|
void Next(nsMemCacheObject* pObject);
|
|
void Next(nsCacheObject* io_pObject);
|
|
|
|
nsMemCacheObject* Next(void) const;
|
|
|
|
nsCacheObject* ThisObject(void) const;
|
|
|
|
private:
|
|
nsMemCacheObject* m_pNextObject;
|
|
nsCacheObject* m_pObject;
|
|
|
|
nsMemCacheObject& operator=(const nsMemCacheObject& mco);
|
|
nsMemCacheObject(const nsMemCacheObject&);
|
|
|
|
};
|
|
|
|
inline nsMemCacheObject::nsMemCacheObject(void):
|
|
m_pObject(new nsCacheObject()),
|
|
m_pNextObject(0)
|
|
{
|
|
}
|
|
|
|
inline nsMemCacheObject::nsMemCacheObject(nsCacheObject* io_pObject):
|
|
m_pObject(io_pObject),
|
|
m_pNextObject(0)
|
|
{
|
|
}
|
|
|
|
inline nsMemCacheObject::nsMemCacheObject(const char* i_url):
|
|
m_pObject(new nsCacheObject(i_url)),
|
|
m_pNextObject(0)
|
|
{
|
|
}
|
|
|
|
inline nsMemCacheObject* nsMemCacheObject::Next(void) const
|
|
{
|
|
return m_pNextObject;
|
|
}
|
|
|
|
inline void nsMemCacheObject::Next(nsMemCacheObject* pObject)
|
|
{
|
|
PR_ASSERT(0==m_pNextObject);
|
|
m_pNextObject = pObject;
|
|
}
|
|
|
|
inline void nsMemCacheObject::Next(nsCacheObject* pObject)
|
|
{
|
|
PR_ASSERT(0==m_pNextObject);
|
|
m_pNextObject = new nsMemCacheObject(pObject);
|
|
}
|
|
|
|
inline nsCacheObject* nsMemCacheObject::ThisObject(void) const
|
|
{
|
|
return m_pObject;
|
|
}
|
|
|
|
#endif //_nsMemCacheObject_h_
|