FDO .NET API Reference Feature Data Objects

mgConflictType.h

Go to the documentation of this file.
00001 /*
00002 * Copyright (C) 2004-2006  Autodesk, Inc.
00003 * 
00004 * This library is free software; you can redistribute it and/or
00005 * modify it under the terms of version 2.1 of the GNU Lesser
00006 * General Public License as published by the Free Software Foundation.
00007 * 
00008 * This library is distributed in the hope that it will be useful,
00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011 * Lesser General Public License for more details.
00012 * 
00013 * You should have received a copy of the GNU Lesser General Public
00014 * License along with this library; if not, write to the Free Software
00015 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00016 *
00017 */
00018 
00019 #pragma once
00020 
00021 /// \cond DOXYGEN-IGNORE
00022 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_LOCKING
00023 /// \endcond
00024 
00025 /// \ingroup (OSGeoFDOCommandsLocking)
00026 /// \brief
00027 /// The ConflictType enumeration defines conflict types required to
00028 /// identify the lock type of a conflict reported with the lock conflict reader.
00029 public __value enum ConflictType
00030 {
00031     /// Identifies a reported conflict
00032     /// in the lock conflict reader as a lock conflict. A conflict represents a
00033     /// lock conflict if an object the user requests to be locked is already locked
00034     /// by a different user.
00035     ConflictType_LockConflict = FdoConflictType_LockConflict,
00036 
00037     /// Identifies a reported conflict
00038     /// in the lock conflict reader as a version conflict. A conflict represents a
00039     /// version conflict if an object the user requests to be locked has already been
00040     /// versioned.
00041     ConflictType_VersionConflict = FdoConflictType_VersionConflict,
00042 
00043     /// Indicates that an unsupported or
00044     /// unknown conflict type has been encountered.
00045     ConflictType_Unsupported = FdoConflictType_Unsupported
00046 };
00047 
00048 /// \cond DOXYGEN-IGNORE
00049 END_NAMESPACE_OSGEO_FDO_COMMANDS_LOCKING
00050 /// \endcond
00051 
00052 

Comments or suggestions? Send us feedback.