VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "Caop4vbCommand"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
' ==============================================================================
'   Caop4vbCommand implementation ver 1.0
'
'   NOTES:
'   - Don't change this class name, Caop4vbCommand.
'
' ==============================================================================
Option Explicit

Implements CaoProv4VB.ICaop4vbCommand


' ------------------------------------------------------------------------------
'   Constructor / Destructor
' ------------------------------------------------------------------------------

' Constructor
Private Sub Class_Initialize()

End Sub

' Destructor
Private Sub Class_Terminate()

End Sub


' ------------------------------------------------------------------------------
'   ICaop4vbCommand Implementation
' ------------------------------------------------------------------------------

' Initialize
'
' pVal(0): [in] objParent As Object
' pVal(1): [in] strName As String
' pVal(2): [in] strOption As String
Private Sub ICaop4vbCommand_FinalInitialize(pVal As Variant)

End Sub

' Terminate
Private Sub ICaop4vbCommand_FinalTerminate()

End Sub

' Execute a command
Private Function ICaop4vbCommand_FinalExecute(ByVal lMode As Long) As Variant

End Function

' Cancel an execution
Private Sub ICaop4vbCommand_FinalCancel()

End Sub

' Get Attribute
Private Function ICaop4vbCommand_FinalGetAttribute() As Long

End Function

' Get Help string
Private Function ICaop4vbCommand_FinalGetHelp() As String

End Function

' Get Parameters
Private Function ICaop4vbCommand_FinalGetParameters() As Variant

End Function

' Put Parameters
Private Sub ICaop4vbCommand_FinalPutParameters(ByVal newVal As Variant)

End Sub

' Get State
Private Function ICaop4vbCommand_FinalGetState() As Long

End Function

' Get Timeout
Private Function ICaop4vbCommand_FinalGetTimeout() As Long

End Function

' Put Timeout
Private Sub ICaop4vbCommand_FinalPutTimeout(ByVal newpVal As Long)

End Sub

' Get ID
Private Function ICaop4vbCommand_FinalGetID() As Variant

End Function

' Put ID
Private Sub ICaop4vbCommand_FinalPutID(ByVal newpVal As Variant)

End Sub


' ------------------------------------------------------------------------------
'   Public Functions
' ------------------------------------------------------------------------------


' ------------------------------------------------------------------------------
'   Private Functions
' ------------------------------------------------------------------------------


