KissXML
                                
                                
                                
                                    KissXML copied to clipboard
                            
                            
                            
                        Allow easier turn on of #define NS* declarations
Currently you must modified the DDXML.h header to turn on the #define NS* declarations.
Instead of:
#if TARGET_OS_IPHONE && 0 // Disabled by default
Do:
#ifndef DDXML_NS_DECLARATIONS_ENABLED
#define DDXML_NS_DECLARATIONS_ENABLED 0 // Disabled by default
#endif
#if DDXML_NS_DECLARATIONS_ENABLED
Which would allow "turn on" without modifying the headers. This is important so KissXML can be easily updated and not "patched" over and over to turn it on.
Would be nice to have this modification.