Warning, /include/Geant4/tools/wroot/imutex is written in an unsupported language. File is not indexed.
0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003
0004 #ifndef tools_wroot_imutex
0005 #define tools_wroot_imutex
0006
0007 namespace tools {
0008 namespace wroot {
0009
0010 class imutex {
0011 public:
0012 virtual ~imutex(){}
0013 public:
0014 virtual bool lock() = 0;
0015 virtual bool unlock() = 0;
0016 //virtual bool trylock() = 0;
0017 };
0018
0019 }}
0020
0021 #endif