c++ - Save/Persist FIX::SessionSettings to file -
c++ - Save/Persist FIX::SessionSettings to file -
in quickfix/j possible save (an updated) sessionsettings file using tostream:
public static void writesettings(sessionsettings settings, file settingsfile) throws ioexception { fileoutputstream settingsout = new fileoutputstream(settingsfile); seek { settings.tostream(settingsout); } { settingsout.close(); } }
however fix::sessionsettings (c++) not have function defined in class reference.
is there easy way accomplish using c++ library, or should port method myself?
c++ c++11 quickfix
Comments
Post a Comment