blob: 725f59a00879f6e04a67c4c266dd1aa8cd4db363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// File: PDF_Data.cxx
// ------------
// Author: DAUTRY Philippe
// <fid@fox.paris1.matra-dtv.fr>
// Copyright: Matra Datavision 1997
// Version: 0.0
// History: Version Date Purpose
// 0.0 Mar 13 1997 Creation
#include <PDF_Data.ixx>
//=======================================================================
//function : PDF_Data
//purpose :
//=======================================================================
PDF_Data::PDF_Data() :
myVersion(0)
{}
//=======================================================================
//function : PDF_Data
//purpose :
//=======================================================================
PDF_Data::PDF_Data(const Standard_Integer aVersionNumber) :
myVersion(aVersionNumber)
{}
|