ede88898e7
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1634 f9c3cf11-9bcb-44bc-f272-b75c42450872
13 lines
260 B
C#
13 lines
260 B
C#
using System;
|
|
|
|
namespace ArducopterConfigurator
|
|
{
|
|
public interface IPresentationModel : ItalksToApm
|
|
{
|
|
string Name { get; }
|
|
void Activate();
|
|
void DeActivate();
|
|
|
|
event EventHandler updatedByApm;
|
|
}
|
|
} |