| GOBO documentation | Contained in the GOBO distribution. |
GOBO::Bridges::Bridge
Base class for all bridges. A bridge maps between object models
| GOBO documentation | Contained in the GOBO distribution. |
package GOBO::Bridges::Bridge; use Moose; use strict; use GOBO::Graph; use FileHandle; use Carp; has graph => (is=>'rw', isa=>'GOBO::Graph', default=>sub{new GOBO::Graph}); 1;