1 module d2d.core.iverifiable; 2 3 /// Interface containing a isValid function. Often combined with IDisposable. 4 interface IVerifiable 5 { 6 /// Function for checking if this is valid. 7 public @property bool valid(); 8 }