mirror of
https://github.com/Mibew/java.git
synced 2025-04-10 23:00:13 +03:00
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@37 c66351dc-e62f-0410-b875-e3a5c0b9693f
17 lines
314 B
C#
17 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace webImTray {
|
|
|
|
public delegate void ModifiedEvent();
|
|
|
|
interface OptionsPanel {
|
|
void initialize();
|
|
void apply();
|
|
string getDescription();
|
|
|
|
event ModifiedEvent PanelModified;
|
|
}
|
|
}
|