~pac72/ubuntu/lucid/ddd/devel

« back to all changes in this revision

Viewing changes to ddd/FontFixBox.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: FontFixBox.C,v 1.9 1999/08/19 11:27:28 andreas Exp $
 
1
// $Id$
2
2
// Font freezing Boxes
3
3
 
4
4
// Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
27
27
// or send a mail to the DDD developers <ddd@gnu.org>.
28
28
 
29
29
char FontFixBox_rcsid[] = 
30
 
    "$Id: FontFixBox.C,v 1.9 1999/08/19 11:27:28 andreas Exp $";
31
 
 
32
 
#ifdef __GNUG__
33
 
#pragma implementation
34
 
#endif
35
 
 
 
30
    "$Id$";
36
31
 
37
32
#include "assert.h"
38
 
#include <iostream.h>
 
33
#include <iostream>
39
34
#include "FontFixBox.h"
40
35
 
41
36
DEFINE_TYPE_INFO_1(FontFixBox, HatBox)
43
38
// FontFixBox
44
39
 
45
40
// Dump
46
 
void FontFixBox::dump(ostream& s) const
 
41
void FontFixBox::dump(std::ostream& s) const
47
42
{
48
43
    s << "fontfix(" << *_box << ")";
49
44
}