Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
tool.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset.inc';
18 
34 class Tool extends Asset
35 {
36 
37 
44  function Tool($assetid=0)
45  {
46  $this->Asset($assetid);
47 
48  }//end constructor
49 
50 
60  public static function paintTool(&$o, $type_code)
61  {
62 
63  }//end paintTool()
64 
65 
75  public static function processTool(&$o, $type_code)
76  {
77  return TRUE;
78 
79  }//end processTool()
80 
81 
82 }//end class
83 
84 
85 ?>