]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/cistern.h
Se arreglan detalles, ya compila pero se cuelga cuando se conecta un cliente.
[z.facultad/75.42/plaqui.git] / Constructor / cistern.h
1 // cistern.h
2 #ifndef _CISTERN_H_
3 #define _CISTERN_H_
4
5 #include "item.h"
6 #include "cisternptywnd.h"
7 #include <iostream>
8
9 class Cistern : public CItem {
10         public:
11                 Cistern();
12                 virtual ~Cistern();
13                 virtual bool on_button_press_event(GdkEventButton *event);
14                 virtual void on_menu_popup_rotar();
15                 virtual void on_menu_popup_propiedades();
16         protected:
17                 double caudal, fluido_max;
18                 int imgActual;  
19                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 0 
20                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 1
21                 Glib::RefPtr<Gdk::Pixbuf> null; 
22         
23                 CisternPtyWnd *cistern_pty_wnd;
24 };
25 #endif