+
+ConnectorType CItem::is_other_connection_area(int _a, int _b)
+{
+ ConnectorType temp2;
+ std::list<CItem *>::iterator i = listaItems->begin();
+ while ( i != listaItems->end() ) {
+ CItem *temp = *i;
+ if (temp != this) {
+ if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF )
+ return temp2;
+ i++;
+ }
+ }
+ return UNDEF;
+}
+ConnectorType CItem::get_connector_type( int _a, int _b )
+{
+ return UNDEF;
+}