#ifndef TAtomic_H #define TAtomic_H /* FernUniversität in Hagen, Lehrgebiet Mensch-Computer-Interaktion Author: J. Kerdels The use of this code for military and/or intelligence purposes is disapproved of. */ #include #include /* Change log: */ template class TAtomic : public TObject, public std::atomic { private: public: TAtomic(); TAtomic(T desired); TAtomic(const TAtomic &other); ~TAtomic(); TAtomic& operator=(const TAtomic& rhs); ClassDef(TAtomic,1); // this class represents a TAtomic }; #endif