library: libThread
#include "TAtomicCount.h"

TAtomicCount


class description - header file
viewCVS header

class TAtomicCount

Inheritance Inherited Members Includes Libraries
Class Charts

Function Members (Methods)

Display options:
Show inherited
Show non-public
public:
TAtomicCount(Long_t v)
~TAtomicCount()
Long_tGet() const
longoperator long() const
voidoperator++()
Long_toperator--()
voidSet(Long_t v)
private:
TAtomicCount(const TAtomicCount&)
TAtomicCount&operator=(const TAtomicCount&)

Data Members

private:
Long_tfCntcounter

Class Description

TAtomicCount(const TAtomicCount &)
TAtomicCount & operator=(const TAtomicCount &)
explicit TAtomicCount(Long_t v)
{ }
void operator++()
{ ++fCnt; }
Long_t operator--()
{ return --fCnt; }
operator long()
{ return fCnt; }
void Set(Long_t v)
{ fCnt = v; }
Long_t Get()
{ return fCnt; }

Last update: Fri Nov 24 16:52:58 2006


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.