38 lines
1.8 KiB
VB.net
38 lines
1.8 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
|
|
|
|
'//Constructor
|
|
Public Sub New(ByVal camera As IntPtr)
|
|
MyBase.new(camera)
|
|
End Sub
|
|
|
|
|
|
Public Overrides Function isLegacy() As Boolean
|
|
|
|
Return True
|
|
|
|
End Function
|
|
|
|
End Class
|