]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Client/include/item_and.h
agrego mi partes sobre los problemas encontrados
[z.facultad/75.42/plaqui.git] / Client / include / item_and.h
1 #ifndef _ITEM_AND_H_
2 #define _ITEM_AND_H_
3
4 #include "item.h" 
5
6 class ViewAnd:public ViewItem{
7 public:
8         ViewAnd(Glib::ustring _name, int orientacion);
9         virtual ~ViewAnd();
10         
11         virtual bool on_image_expose_event(GdkEventExpose *e);
12         
13         virtual std::string get_actual_flow() { return ""; }
14         virtual std::string get_cap_flow() { return ""; }
15 };
16
17 #endif
18