///////////////////////////////////////////////////////////////// Construction/Destruction /////////////////////////////////////////////////////////////////
| 15 | // Construction/Destruction |
| 16 | ////////////////////////////////////////////////////////////////////// |
| 17 | XAutoLock::XAutoLock(XCritSec&rXCritSec) |
| 18 | :x_crit_sec_(rXCritSec) |
| 19 | { |
| 20 | x_crit_sec_.Lock(); |
| 21 | } |
| 22 | |
| 23 | XAutoLock::~XAutoLock() |
| 24 | { |