FDO .NET API Reference Feature Data Objects

mgICreateLTCheckpointImp.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\mgICreateLongTransactionCheckpoint.h"
00023 
00024 class FdoICreateLongTransactionCheckpoint;
00025 
00026 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION
00027 
00028 /// \ingroup (OSGeoFDOCommandsLongTransaction)
00029 /// \brief
00030 /// The ICreateLongTransactionCheckpointImp class is a 
00031 /// concrete implementation of ICreateLongTransactionCheckpoint.
00032 /// The ICreateLongTransactionCheckpoint interface defines the
00033 /// CreateLongTransactionCheckpoint command, which allows the user to create a
00034 /// checkpoint for any long transaction to which the user has the access privileges.
00035 private __gc class ICreateLongTransactionCheckpointImp : public NAMESPACE_OSGEO_FDO_COMMANDS::ICommandImp, public NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION::ICreateLongTransactionCheckpoint
00036 {
00037 public:
00038     /// \brief
00039     /// Gets the name of the long transaction for which a checkpoint should
00040     /// be created.
00041     /// 
00042     /// \return
00043     /// Returns the long transaction name
00044     /// 
00045     __property System::String* get_LongTransactionName();
00046 
00047     /// \brief
00048     /// Sets the name of the long transaction for which a checkpoint should
00049     /// be created.
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     /// Gets the name of the checkpoint to be created for the named long
00061     /// transaction.
00062     /// 
00063     /// \return
00064     /// Returns the checkpoint name
00065     /// 
00066     __property System::String* get_CheckpointName();
00067 
00068     /// \brief
00069     /// Sets the name of the checkpoint to be created for the named long
00070     /// transaction.
00071     /// 
00072     /// \param value 
00073     /// Input the checkpoint name
00074     /// 
00075     /// \return
00076     /// Returns nothing
00077     /// 
00078     __property System::Void set_CheckpointName(System::String* value);
00079 
00080     /// \brief
00081     /// Gets the description of the checkpoint to be created for the named
00082     /// long transaction.
00083     /// 
00084     /// \return
00085     /// Returns the description of the checkpoint
00086     /// 
00087     __property System::String* get_CheckpointDescription();
00088 
00089     /// \brief
00090     /// Sets the description of the checkpoint to be created for the named
00091     /// long transaction.
00092     /// 
00093     /// \param value 
00094     /// Input the description of the checkpoint
00095     /// 
00096     /// \return
00097     /// Returns nothing
00098     /// 
00099     __property System::Void set_CheckpointDescription(System::String* value);
00100 
00101     /// \brief
00102     /// Executes the CreateLongTransactionCheckpoint command.
00103     /// 
00104     /// \return
00105     /// Returns nothing
00106     /// 
00107     System::Void Execute();
00108 
00109 public private:
00110     ICreateLongTransactionCheckpointImp(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_FDO_COMMANDS::ICommandImp(unmanaged, autoDelete)
00111     {
00112 
00113     }
00114 
00115     inline FdoICreateLongTransactionCheckpoint* GetImpObj();
00116 };
00117 
00118 END_NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION
00119 
00120 

Comments or suggestions? Send us feedback.