]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/src/item.cpp
-Las compuertas pueden tener n entradas pero solo 1 salida
[z.facultad/75.42/plaqui.git] / Constructor / src / item.cpp
index f4604b009f0e3cf24badb5d6fd4145943c5ee54c..d3624db421aae00c19f2ebdbe741790a62b6b508 100644 (file)
@@ -17,7 +17,7 @@ CItem::CItem()
        Glib::RefPtr<Gnome::Glade::Xml> ref;
        ref = Gnome::Glade::Xml::create(PACKAGE_DATA_DIR"/plaqui-constructor/dialogs/constructor.glade", "item_pty_wnd");
        ref->get_widget_derived("item_pty_wnd",property_wnd);
-       caudal_max = 0.0;
+       caudal_max = 10.0;
        is_union = true;
        is_connected = false;
        is_logic =false;
@@ -147,6 +147,14 @@ void CItem::set_name(Glib::ustring _name)
        name = _name;
 }
 
+void CItem::set_out_connected(bool _o)
+{
+}
+
+void CItem::set_in_connected(bool _o)
+{
+}
+
 bool CItem::is_occupied_area(int _a, int _b)
 {      
        if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
@@ -207,4 +215,3 @@ void CItem::draw_connectors()
                queue_draw();
        }
 }
-