FDO .NET API Reference Feature Data Objects

mgIGetLongTransactionCheckpointsImp.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 #include "FDO\Commands\mgICommandImp.h"
00022 #include "FDO\Commands\LongTransaction\mgIGetLongTransactionCheckpoints.h"
00023 
00024 class FdoIGetLongTransactionCheckpoints;
00025 
00026 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION
00027 public __gc __interface ILongTransactionCheckpointReader;
00028 
00029 /// \ingroup (OSGeoFDOCommandsLongTransaction)
00030 /// \brief
00031 /// The IGetLongTransactionCheckpointsImp class is a 
00032 /// concrete implementation of IGetLongTransactionCheckpoints.
00033 /// The IGetLongTransactionCheckpoints interface defines the
00034 /// GetLongTransactionCheckpoints command, which allows the user to enumerate
00035 /// the checkpoints for a given long transaction. To execute the operation, the
00036 /// user must have access privilege to the long transaction.
00037 private __gc class IGetLongTransactionCheckpointsImp : public NAMESPACE_OSGEO_FDO_COMMANDS::ICommandImp, public NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION::IGetLongTransactionCheckpoints
00038 {
00039 public:
00040     /// \brief
00041     /// Gets the name of the long transaction for which to get the checkpoints.
00042     /// 
00043     /// \return
00044     /// Returns nothing
00045     /// 
00046     __property System::String* get_LongTransactionName();
00047 
00048     /// \brief
00049     /// Sets the name of the long transaction for which to get the checkpoints.
00050     /// 
00051     /// \param value 
00052     /// Input the name of the long transaction
00053     /// 
00054     /// \return
00055     /// Returns nothing
00056     /// 
00057     __property System::Void set_LongTransactionName(System::String* value);
00058 
00059     /// \brief
00060     /// Executes the get long transaction checkpoints command, returning a
00061     /// reference to an ILongTransactionCheckpointReader.
00062     /// 
00063     /// \return
00064     /// Returns nothing
00065     /// 
00066     NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION::ILongTransactionCheckpointReader* Execute();
00067 
00068 public private:
00069     IGetLongTransactionCheckpointsImp(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_FDO_COMMANDS::ICommandImp(unmanaged, autoDelete)
00070     {
00071 
00072     }
00073 
00074     inline FdoIGetLongTransactionCheckpoints* GetImpObj();
00075 };
00076 
00077 END_NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION
00078 
00079 

Comments or suggestions? Send us feedback.