-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActionListener.cs
21 lines (20 loc) · 1.15 KB
/
ActionListener.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/******************************************************************************
* *
* PROJECT : Eos Digital camera Software Development Kit EDSDK *
* *
* Description: This is the Sample code to show the usage of EDSDK. *
* *
* *
*******************************************************************************
* *
* Written and developed by Canon Inc. *
* Copyright Canon Inc. 2018 All Rights Reserved *
* *
*******************************************************************************/
namespace CameraControl
{
public class ActionListener
{
public virtual void ActionPerformed(ActionEvent e) { }
}
}