Atomic
in the files of
Atomic.h
and Atomic.cpp
. Atomic
is an
abstract class that is derived from the abstract base
class Devs
.
class DEVSpp_EXP Atomic: public Devs { protected: Atomic(const string& name): Devs(name), m_cs(false) {} ...