~pac72/ubuntu/lucid/ddd/devel

« back to all changes in this revision

Viewing changes to ddd/ArcGraphE.C

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2004-07-22 03:49:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040722034937-cysl08t1jvba4jrx
Tags: 1:3.3.9-3
USERINFO has been renamed to USERINFO.txt; adjust debian/rules code
to match, to get correct information on the About DDD dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// $Id: ArcGraphE.C,v 1.18 1999/08/19 11:27:03 andreas Exp $ -*- C++ -*-
 
1
// $Id$ -*- C++ -*-
2
2
// Arc edges
3
3
 
4
4
// Copyright (C) 1997 Technische Universitaet Braunschweig, Germany.
27
27
// or send a mail to the DDD developers <ddd@gnu.org>.
28
28
 
29
29
char ArcGraphEdge_rcsid[] = 
30
 
    "$Id: ArcGraphE.C,v 1.18 1999/08/19 11:27:03 andreas Exp $";
31
 
 
32
 
#ifdef __GNUG__
33
 
#pragma implementation
34
 
#endif
 
30
    "$Id$";
35
31
 
36
32
#include "ArcGraphE.h"
37
33
#include "HintGraphN.h"
90
86
                            const BoxRegion& exposed, 
91
87
                            const GraphGC& gc) const
92
88
{
93
 
    makeLine(w, exposed, cout, gc);
 
89
    makeLine(w, exposed, std::cout, gc);
94
90
}
95
91
 
96
 
void ArcGraphEdge::_print(ostream& os,
 
92
void ArcGraphEdge::_print(std::ostream& os,
97
93
                          const GraphGC& gc) const
98
94
{
99
95
    makeLine(0, BoxRegion(), os, gc);
101
97
 
102
98
void ArcGraphEdge::makeLine(Widget w,
103
99
                            const BoxRegion& exposed,
104
 
                            ostream& os,
 
100
                            std::ostream& os,
105
101
                            const GraphGC& gc) const
106
102
{
107
103
    HintGraphNode   *arc_hint = 0;