<?php

class Container 
{
  var $Id;
  
  function Start()
  {
  }
  
  function Stop()
  {
  }
  
  function Restart()
  {
  }
  
  function Create()
  {
  }
  
  function Destroy()
  {
  }
}

class OpenVZ
{
  function CreateContainer()
  {
  }
  
  function GetList()
  {
    
  }
}

?>
