// $Id$ #ifndef PC_UPDATER_T_C #define PC_UPDATER_T_C #include "PC_Updater.h" #include "PC_Updater_T.h" namespace PC_Updater_T { /// Dumps a sequence template void update_sequence (const SEQUENCE &seq, PC_Updater* updater) { const CORBA::ULong size = seq.length (); for (CORBA::ULong i = 0; i < size; ++i) updater->update (seq[i]); } } #endif /* PC_Updater_C */