Search results

  1. D

    simple xml parser for c++

    Okay - I think I get it now. CFXML is an XML parser that is part of the (Carbon) Core Foundation (http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFXML/index.html) and can therefore be accessed via C++ (actually to access it from Cocoa/ObjectiveC you need to use the NSMXL...
  2. D

    libstdc++.a / C++ & Xcode newbie

    I don't have tiger yet, but I believe you no longer need to link to libstdc++ with the latest version of g++ for darwin. Try removing references to it from your project (and putting the using namespace std; back in of course). To do this, just delete the "file" in your project called...
  3. D

    simple xml parser for c++

    Thanks guys. Looks like TinyXML will do the trick. As an ex-microsoft developer I find it strange that Apple's XML API can only be accessed via only one of the main development languages on the platform - objective C. That certainly wasn't the case with MSXML. Is there really no way I can create...
  4. D

    simple xml parser for c++

    Hi. Hope someone can help me. Is there an XML parser API supplied with OS X that can be used from a c++ project? I can only find reference to something that seems to require cocoa and objective c - CFXMLTree. I'd ideally like to avoid xerces / xpat etc etc as all I want to do is very quickly...
Back
Top