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

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -