Recent content by yoursecretpw

  1. Y

    C++ Program Help

    This little crappile of code somehow takes raw CME Globex data and brings it into the proprietary binary file format used in the rest of the application. It creates volume bars. Running the app, I almost forgot how to use it because I was too lazy to label the dialog's form properly. Plus it...
  2. Y

    C++ Program Help

    heres something from a previous Qt project, maybe you will find something useful in it, or maybe not, who knows. maybe i will revive the project at some point if distractions fail to override devotion of free time. the CSV dialog, written using Qt and a little bit of C, brings data into a...
  3. Y

    C++ Program Help

    Let us use google to investigate the usage of the getline method which we know is a method of ifstream (right?) We get: http://www.cplusplus.com/reference/iostream/istream/getline.html (char *) means cast to pointer-to-char. We know that a pointer stores an address. And, we know that...
  4. Y

    C++ Program Help

    Hi ES335, <i>filePath</i> (filePath is of type pointer-to-char. In that context, the asterisk means pointer. A pointer stores the memory location of an object. You will learn more on this when you read your C++ Primer!!) is the argument passed into the function <i>ReadFromFileSample</i>...
  5. Y

    c++ question

    Hi, If you want to learn C++ from scratch, this may not be a bad path: Get the book <i>C++ Primer Plus, 5th Edition</i>. It has very thorough explanations of basic topics. You may also want to get <i>C Primer Plus, 5th Edition</i>. Amazon sells them as a bundle. <i>C++ Primer</i> is...
Back
Top