PDA

View Full Version : qt's private headers and classes



GrahamLabdon
12th October 2011, 11:38
Hello
I am implementing a class to output the contents of a QTextDocument in a custom format.
I started to look at the code that outputs in odf format and this code makes use of the QTextDocumentPrivate class defined in Qt\4.7.4\src\gui\text\qtextdocument_p.h

My question is – can I follow this lead and use these ‘private’ classes?

Thanks

wysota
12th October 2011, 14:05
No, you can't use private headers. At least not in any easy way.