Public Member Functions

QAtomicInt Class Reference

Search for all occurrences

Detailed Description

Definition at line 55 of file qatomic.h.

#include <qatomic.h>

Inheritance diagram for QAtomicInt:
Inheritance graph
[legend]

List of all members.

Public Member Functions

  QAtomicInt (int value=0)
  QAtomicInt (const QAtomicInt &other)
QAtomicInt operator= (int value)
QAtomicInt operator= (const QAtomicInt &other)

Constructor & Destructor Documentation

QAtomicInt ( int  value = 0 ) [inline]

Definition at line 58 of file qatomic.h.

    {
#ifdef QT_ARCH_PARISC
        this->_q_lock[0] = this->_q_lock[1] = this->_q_lock[2] = this->_q_lock[3] = -1;
#endif
        _q_value = value;
    }
QAtomicInt ( const QAtomicInt other ) [inline]

Definition at line 65 of file qatomic.h.

    {
#ifdef QT_ARCH_PARISC
        this->_q_lock[0] = this->_q_lock[1] = this->_q_lock[2] = this->_q_lock[3] = -1;
#endif
        _q_value = other._q_value;
    }

Member Function Documentation

QAtomicInt& operator= ( int  value ) [inline]

Reimplemented from QBasicAtomicInt.

Definition at line 73 of file qatomic.h.

    {
        (void) QBasicAtomicInt::operator=(value);
        return *this;
    }
QAtomicInt& operator= ( const QAtomicInt other ) [inline]

Definition at line 79 of file qatomic.h.

    {
        (void) QBasicAtomicInt::operator=(other);
        return *this;
    }

The documentation for this class was generated from the following file:

QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt
QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt QAtomicInt