VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
  Persistable = 0  'NotPersistable
  DataBindingBehavior = 0  'vbNone
  DataSourceBehavior  = 0  'vbNone
  MTSTransactionMode  = 0  'NotAnMTSObject
END
Attribute VB_Name = "Caop4vbTask"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
' ==============================================================================
'   Caop4vbTask implementation ver 1.0
'
'   NOTES:
'   - Don't change this class name, Caop4vbTask.
'
' ==============================================================================
Option Explicit

Implements CaoProv4VB.ICaop4vbTask


' ------------------------------------------------------------------------------
'   Constructor / Destructor
' ------------------------------------------------------------------------------

' Constructor
Private Sub Class_Initialize()

End Sub

' Destructor
Private Sub Class_Terminate()

End Sub


' ------------------------------------------------------------------------------
'   ICaop4vbTask Implementation
' ------------------------------------------------------------------------------

' Initialize
'
' pVal(0): [in] objParent As Object
' pVal(1): [in] strName As String
' pVal(2): [in] strOption As String
Private Sub ICaop4vbTask_FinalInitialize(pVal As Variant)

End Sub

' Terminate
Private Sub ICaop4vbTask_FinalTerminate()

End Sub

' Delete Task
Private Sub ICaop4vbTask_FinalDelete(ByVal bstrOption As String)

End Sub

' Start Task
Private Sub ICaop4vbTask_FinalStart(ByVal lMode As Long, ByVal bstrOption As String)

End Sub

' Stop Task
Private Sub ICaop4vbTask_FinalStop(ByVal lMode As Long, ByVal bstrOption As String)

End Sub

' Execute Custom command
Private Function ICaop4vbTask_FinalExecute(ByVal bstrCommand As String, ByVal vntParam As Variant) As Variant

End Function

' Get Attribute
Private Function ICaop4vbTask_FinalGetAttribute() As Long

End Function

' Get Help string
Private Function ICaop4vbTask_FinalGetHelp() As String

End Function

' Get File name
Private Function ICaop4vbTask_FinalGetFileName() As String

End Function

' Get Caop4vbVariable name list
Private Function ICaop4vbTask_FinalGetVariableNames(ByVal bstrOption As String) As Variant

End Function

' Get ID
Private Function ICaop4vbTask_FinalGetID() As Variant

End Function

' Put ID
Private Sub ICaop4vbTask_FinalPutID(ByVal newpVal As Variant)

End Sub


' ------------------------------------------------------------------------------
'   Public Functions
' ------------------------------------------------------------------------------


' ------------------------------------------------------------------------------
'   Private Functions
' ------------------------------------------------------------------------------

