[osg-users] dumping command line args/inputs

2013-02-18 Thread Conan Doyle
Hi, is there a quick/simple way to dump all the command line options added via osg::ArgumentParser::getApplicationUsage()->addCommandLineOption, addEnvironmentalVariable etc.? I simply want to dump all my input args to a file as I run my app. ... Thank you! Cheers, Conan

Re: [osg-users] dumping command line args/inputs

2013-02-19 Thread Robert Osfield
Hi Conan, On 18 February 2013 20:22, Conan Doyle wrote: > is there a quick/simple way to dump all the command line options added via > osg::ArgumentParser::getApplicationUsage()->addCommandLineOption, > addEnvironmentalVariable etc.? I simply want to dump all my input args to a > file as I r

Re: [osg-users] dumping command line args/inputs

2013-02-20 Thread Conan Doyle
Don't think so... it appears that write dumps the equivalent of "--help"... what I want to do is dump what the user actually passed in at run time... S robertosfield wrote: > Hi Conan, > > On 18 February 2013 20:22, Conan Doyle <> wrote: > > > is there a quick/simple way to dump all the comma

Re: [osg-users] dumping command line args/inputs

2013-02-20 Thread Gordon Tomlinson
s.openscenegraph.org [mailto:osg-users-boun...@lists.openscenegraph.org] On Behalf Of Conan Doyle Sent: Wednesday, February 20, 2013 1:00 PM To: osg-users@lists.openscenegraph.org Subject: Re: [osg-users] dumping command line args/inputs Don't think so... it appears that write dumps the equival

Re: [osg-users] dumping command line args/inputs

2013-02-22 Thread Conan Doyle
Well... I _could_ but I am already using the arg parser/app usage stuff to process inputs so why not try to use it to record the users inputs this way too if possible? I thought maybe there was already a way to do this but apparently not. To clarify, all I wanted to do was take user input... r