drivers/can_ixxat_win32/autoreleasecs.h
author lbessard
Wed, 08 Aug 2007 14:55:15 +0200
changeset 254 f2b0acb54e65
parent 252 b0dd37421d28
child 255 7b9f36dbfe5f
permissions -rw-r--r--
Cleaning code for using only wxPython 2.6 class naming
Adding sizers to all dialogs
// Critical Section Autorelease
// Tochinski Leonid, Chatten Associates, Inc. 2007
#pragma once

class AutoReleaseCS
   {
   public:
      AutoReleaseCS(CRITICAL_SECTION& cs) : m_cs(cs)
         {
         ::EnterCriticalSection(&m_cs);
         }
      ~AutoReleaseCS()
         {
         ::LeaveCriticalSection(&m_cs);
         }
      CRITICAL_SECTION& m_cs;
   };