This is Unofficial EPICS BASE Doxygen Site
epics::pvAccess::detail::AtomicValue< bool > Class Template Reference

#include "codec.h"

Public Member Functions

bool getAndSet (bool newval)
 
bool get ()
 

Detailed Description

template<>
class epics::pvAccess::detail::AtomicValue< bool >

Definition at line 89 of file codec.h.

Member Function Documentation

bool epics::pvAccess::detail::AtomicValue< bool >::get ( )
inline

Definition at line 97 of file codec.h.

97  {
98  return !!this->realval.get();
99  }
bool epics::pvAccess::detail::AtomicValue< bool >::getAndSet ( bool  newval)
inline

Definition at line 93 of file codec.h.

94  {
95  return this->realval.getAndSet(newval?1:0)!=0;
96  }

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