8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 18:03:04 +01:00
firebird-mirror/src/jrd/smp.h
brodsom 2aeb693d06 extern cleaning
removing underscores in macros
DLL_EXPORT cleaning
2003-10-03 01:53:34 +00:00

15 lines
207 B
C++

#ifndef JRD_SMP_H
#define JRD_SMP_H
class SmpLock
{
public:
SmpLock() {}
virtual ~SmpLock() {}
virtual void aquire(void) = 0;
virtual void release(void) = 0;
};
#endif