Search found 3 matches

by hardwick
Fri, 2005-07-29, 18:30
Forum: DCMTK - Installation
Topic: Compiling DCMTK on x86_64
Replies: 11
Views: 18431

I needed GCC 4, but don't want to make the leap from 3.5.3 to the development version. I've made a patch from the current cvs against 3.5.3 that seems to work under 32 bit and 64 bit GCC 4 (tested on FC4). --- dcmtk-3.5.3/ofstd/libsrc/ofthread.cc 2004-04-22 04:45:32.000000000 -0600 +++ dcmtk-3.5.3-n...
by hardwick
Tue, 2005-07-26, 20:20
Forum: DCMTK - General
Topic: STL container of DcmDataset
Replies: 3
Views: 5333

Thanks for the reply. Until the assignment operator is fixed, can I make an OFList of DcmDatasets?

Jim
by hardwick
Fri, 2005-07-22, 16:19
Forum: DCMTK - General
Topic: STL container of DcmDataset
Replies: 3
Views: 5333

STL container of DcmDataset

I would like to create a std::list<DcmDataset> to hold a series of images. This doesn't work because DcmDataset defines operator=() as private. Suggestions? (A std::list<DcmDataset*> is a last resort, since I would like the list to clean up it's contained instances.) This brings up a question. DcmDa...