+ Punto(int x, int y): x(x), y(y) {
+#ifdef DEBUG
+ std::cerr << "En constructor de Punto." << std::endl;
+#endif
+ }
+
+ /// Constructor a partir de punteros a dos spinbuttons.
+ Punto(GtkSpinButton* x, GtkSpinButton* y):
+ x(gtk_spin_button_get_value_as_int(x)),
+ y(gtk_spin_button_get_value_as_int(y)) {