locknull.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KABC_LOCKNULL_H
00022 #define KABC_LOCKNULL_H
00023
00024 #include <qstring.h>
00025
00026 #include "lock.h"
00027
00028 namespace KABC {
00029
00034 class LockNull : public Lock
00035 {
00036 public:
00037 LockNull( bool allowAccess );
00038 ~LockNull();
00039
00040 bool lock();
00041 bool unlock();
00042
00043 QString error() const;
00044
00045 private:
00046 bool mAllowAccess;
00047
00048 class Private;
00049 Private *d;
00050 };
00051
00052 }
00053
00054 #endif
This file is part of the documentation for kabc Library Version 3.2.1.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Thu Mar 4 22:45:22 2004 by
doxygen 1.3.6-20040222 written by
Dimitri van Heesch, © 1997-2003