source: code/Website/php-ofc-library/ofc_bar_3d.php@ 7855

Last change on this file since 7855 was 7849, checked in by dennisw, 15 years ago
File size: 271 bytes
Line 
1<?php
2
3include_once 'ofc_bar_base.php';
4
5class bar_3d_value
6{
7 function bar_3d_value( $top )
8 {
9 $this->top = $top;
10 }
11
12 function set_colour( $colour )
13 {
14 $this->colour = $colour;
15 }
16
17 function set_tooltip( $tip )
18 {
19 $this->tip = $tip;
20 }
21}
22
Note: See TracBrowser for help on using the repository browser.