/* [<][>][^][v][top][bottom][index][help] */
//
// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
// 2011 Free Software Foundation, Inc
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// Smart (ref-counting) pointer classes. Uses "intrusive" approach:
// the types pointed to must have add_ref() and drop_ref() methods.
// Typically this is done by inheriting from a ref_counted class,
// although the nice thing about templates is that no particular
// ref-counted class is mandated.
#ifndef SMART_PTR_H
#define SMART_PTR_H
#include "ref_counted.h"
// TODO: drop all users of this macro, we _are_ using GC now
#define GNASH_USE_GC 1
namespace gnash {
class GcResource;
}
namespace gnash {
inline void
intrusive_ptr_add_ref(const ref_counted* o)
{
o->add_ref();
}
inline void
intrusive_ptr_release(const ref_counted* o)
{
o->drop_ref();
}
} // namespace boost||gnash
#endif // SMART_PTR_H
// Local Variables:
// mode: C++
// c-basic-offset: 8
// tab-width: 8
// indent-tabs-mode: t
// End: