AlternC/bureau/class/vm.class.php

10 lines
105 B
PHP
Raw Normal View History

<?php
interface vm {
public function start();
2014-03-26 13:59:41 +00:00
/**
* @return boolean
*/
public function stop();
}