CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: garea

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    776

    Re: XML Streamming Parser

    Finally I decided to use Expat, but I can't integrate it in my Visual Studio Project.
    I think I only need to include the libextap.dll in the project, but when I import "expat.h" the compiler throw...
  2. Replies
    5
    Views
    776

    XML Streamming Parser

    Hi, I'm searching for an XML streamming parser, but I dont know wich one I must use.

    I have to parse very large files, and i need to use threads because i need to do some things before the parsing...
  3. Replies
    3
    Views
    4,975

    Re: How to get lenght of a float* variable

    Ok, i will try to modify "someClass" adding a new attribute numberOfRanges

    thank you!
  4. Replies
    3
    Views
    4,975

    How to get lenght of a float* variable

    Hi, I have a variable like this:

    float* ranges = someClass->getRanges()

    and I would like to know how to get the lenght of "ranges" because "someClass" doesn't has any method to obtain this.
    ...
  5. Replies
    2
    Views
    4,855

    Re: Recursive imports problem

    Thank you very much, it works!!!
  6. Replies
    2
    Views
    4,855

    Recursive imports problem

    I have a problem with recursive imports in C++. I have this 2 classes:

    //File A.h
    #include "B.h"

    class A{
    public:
    A(){};

    void doA(B b){ b.doB(); }
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured