summaryrefslogtreecommitdiff
path: root/src/PDF/PDF_TagSource.cxx
blob: e390df11e85514d65caf7577515dc2bef68b9b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <PDF_TagSource.ixx>

PDF_TagSource::PDF_TagSource() { }

PDF_TagSource::PDF_TagSource(const Standard_Integer V)
: myValue (V) {}

Standard_Integer PDF_TagSource::Get() const
{ return myValue; }

void PDF_TagSource::Set(const Standard_Integer V) 
{ myValue = V; }