blob: 3bb5ae49a9c1b965f5674054bf6a90a0386cf54c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// File: PDF_Reference.cxx
// Created: Wed Mar 1 14:33:57 2000
// Author: Denis PASCAL
// <dp@dingox.paris1.matra-dtv.fr>
#include <PDF_Reference.ixx>
PDF_Reference::PDF_Reference() { }
PDF_Reference::PDF_Reference(const Handle(PCollection_HAsciiString)& V)
: myValue (V) {}
Handle(PCollection_HAsciiString) PDF_Reference::ReferencedLabel() const
{ return myValue; }
void PDF_Reference::ReferencedLabel(const Handle(PCollection_HAsciiString)& V)
{ myValue = V; }
|