// file : cult/mm/arch/i386/counter.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2010 Boris Kolpackov // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef CULT_MM_ARCH_I386_COUNTER_HXX #define CULT_MM_ARCH_I386_COUNTER_HXX #include namespace Cult { namespace MM { class Counter: public NonCopyable { public: Counter (); // After failure assume the counter has its old value. // Void inc_ref (); // After failure assume the counter has its new value. // Boolean dec_ref (); Size count () const; private: Size value_; }; } } #include #endif // CULT_MM_ARCH_I386_COUNTER_HXX