]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Client/include/item_or.h
Mas detalles y se agrega el logo faltante en el constructor
[z.facultad/75.42/plaqui.git] / Client / include / item_or.h
1 #ifndef _ITEM_OR_H_
2 #define _ITEM_OR_H_
3
4 #include "item.h" 
5
6 class ViewOr:public ViewItem{
7 public:
8         ViewOr(Glib::ustring _name, int orientacion);
9         virtual ~ViewOr();
10         
11         virtual bool on_image_expose_event(GdkEventExpose *e);
12         virtual std::string get_actual_flow() { return ""; }
13         virtual std::string get_cap_flow() { return ""; }
14 };
15
16 #endif
17