<?php
interface vm {
        /**
    	  * @return boolean
         */
	public function start();

	/**
	 * @return boolean
	 */
	public function stop();
}