GObject-Plugin/src/iface/PluginInterface.vala

29 lines
367 B
Vala
Raw Normal View History

2014-09-19 11:04:31 +04:00
/**
* GObject Models.
*/
namespace GObject {
/**
* Modules/Plugins.
*/
namespace Plugins {
/**
* Plugin interface.
*/
public interface IPlugabble : Object {
}
/**
* Abstract Plugin.
*/
public abstract class Plugin : Object, IPlugabble {
2014-10-16 16:11:28 +04:00
/**
* Host Interface.
*/
public IHost host { get; set; default = null; }
2014-09-19 11:04:31 +04:00
}
}
}