name: BiGraphArc <TObject>

synopsis:

g++ [flags ...] file ...

#include ;

BiGraphArc(const BiGraphArc<TObject>& copy_arc);
boolean setVertex(BiGraphVertex<TObject>* dest);
BiGraphVertex<TObject>* getVertex() const;
boolean containsData() const;
quick start:
// declare the graph arc object
//
BiGraphArc<Char> arc;
BiGraphVertex<Char> vertex;

// set the items
//
arc.setVertex(&vertex);
arc.setWeight(0.9);
arc.setEpsilon(true);
description:

BiGraphArc is a generic arc in a graph. The main purpose of an arc is to connect two graph vertices. This class also provides support to the Graph class.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: