Files
cameramanager/CameraMng/Camera/CameraModelLegacy.vb
T
Demetrio Cassarino a753e2082c -pulizia codice
2025-06-25 14:20:24 +02:00

42 lines
1.9 KiB
VB.net

'/******************************************************************************
'* *
'* PROJECT : EOS Digital Software Development Kit EDSDK *
'* NAME : CameraModelLegacy.vb *
'* *
'* Description: This is the Sample code to show the usage of EDSDK. *
'* *
'* *
'*******************************************************************************
'* *
'* Written and developed by Camera Design Dept.53 *
'* Copyright Canon Inc. 2006 All Rights Reserved *
'* *
'*******************************************************************************
'* File Update Information: *
'* DATE Identify Comment *
'* ----------------------------------------------------------------------- *
'* 06-03-22 F-001 create first version. *
'* *
'******************************************************************************/
Public Class CameraModelLegacy
Inherits CameraModel
#Region "CONSTRUCTOR"
Public Sub New(ByVal camera As IntPtr)
MyBase.New(camera)
End Sub
#End Region ' Constructor
#Region "METHODS"
Public Overrides Function isLegacy() As Boolean
Return True
End Function
#End Region ' Methods
End Class