Changeset 39 for abuse/trunk/src/imlib/include/status.hpp
- Timestamp:
- Mar 2, 2008, 12:29:06 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/include/status.hpp
r14 r39 8 8 { 9 9 public : 10 virtual void push(char *name, visual_object *show) = 0;10 virtual void push(char const *name, visual_object *show) = 0; 11 11 virtual void update(int percentage) = 0; 12 12 virtual void pop() = 0; … … 24 24 text_status_node *first; 25 25 text_status_manager(); 26 virtual void push(char *name, visual_object *show);26 virtual void push(char const *name, visual_object *show); 27 27 virtual void update(int percentage); 28 28 virtual void pop(); … … 35 35 { 36 36 public : 37 stack_stat(char *st, visual_object *show=NULL) { if (stat_man) stat_man->push(st,show); }37 stack_stat(char const *st, visual_object *show=NULL) { if (stat_man) stat_man->push(st,show); } 38 38 ~stack_stat() { if (stat_man) stat_man->pop(); } 39 39 } ;
Note: See TracChangeset
for help on using the changeset viewer.