mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
33 lines
855 B
C++
33 lines
855 B
C++
// ===============================================================
|
|
// TangibleVolumeContainer.h
|
|
// copyright 2002 SonyOnline Interactive
|
|
// All rights reserved
|
|
// ===============================================================
|
|
|
|
#ifndef INCLUDED_TangibleVolumeContainer_H
|
|
#define INCLUDED_TangibleVolumeContainer_H
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#include "sharedObject/VolumeContainer.h"
|
|
|
|
|
|
class TangibleVolumeContainer : public VolumeContainer
|
|
{
|
|
|
|
public:
|
|
TangibleVolumeContainer(Object& owner, int totalVolume);
|
|
~TangibleVolumeContainer();
|
|
|
|
virtual bool mayAdd (const Object& item, ContainerErrorCode& error) const;
|
|
|
|
private:
|
|
TangibleVolumeContainer();
|
|
TangibleVolumeContainer(const TangibleVolumeContainer&);
|
|
TangibleVolumeContainer & operator= (const TangibleVolumeContainer &);
|
|
|
|
};
|
|
|
|
|
|
#endif
|