00001 #ifndef BAR_H 00002 #define BAR_H 00003 // @(#) $Id$ 00004 // 00005 // [Insert copyright and license statement as presented above] 00006 // 00007 // 00008 00009 00020 00021 class Bar : protected Intermediate 00022 { 00023 public: 00025 00027 00029 double a ; 00030 00032 int b ; 00034 00035 // constructor 00050 00051 Bar( double a, int b ) ; 00052 00054 ~Bar() ; 00055 00057 00059 00061 void transmogriphierLoad(int profile); 00062 00064 int transmogriphierUnload(void); 00065 00067 void transmogriphierStart(void); 00068 00070 }; 00071 #endif