2011-02-13 05:25:54 -04:00
|
|
|
using System;
|
|
|
|
|
2010-12-18 18:23:09 -04:00
|
|
|
namespace ArducopterConfigurator
|
|
|
|
{
|
2011-02-13 05:25:54 -04:00
|
|
|
public interface IPresentationModel : ItalksToApm
|
2010-12-18 18:23:09 -04:00
|
|
|
{
|
|
|
|
string Name { get; }
|
2011-02-13 05:25:54 -04:00
|
|
|
void Activate();
|
|
|
|
void DeActivate();
|
|
|
|
|
|
|
|
event EventHandler updatedByApm;
|
2010-12-18 18:23:09 -04:00
|
|
|
}
|
|
|
|
}
|