$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Robert Ramey (ramey_at_[hidden])
Date: 2005-04-11 19:40:04
How about the following?
saveData( std::string fileInfo)
{
    os << userSaveConfig;
    if (userSaveConfig )
        os << saveConfig;
    if (optionSave)
        os < saveOptions;
}
getData(std::string fileInfo)
{
    int userSaveConfig;
    os >> userSaveConfig
    if (userSaveConfig )
        os << saveConfig;
    if (optionSave)
        os < saveOptions;
}
Robert Ramey