Changeset 846 for trunk/tools/qdoc3/pagegenerator.h
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/tools/qdoc3/pagegenerator.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 55 55 QT_BEGIN_NAMESPACE 56 56 57 class QTextCodec; 58 57 59 class ClassNode; 58 60 class InnerNode; … … 68 70 69 71 protected: 70 virtual QString fileBase(const Node *node) ;71 virtual QString fileExtension(const Node *node) = 0;72 QString fileName(const Node *node) ;72 virtual QString fileBase(const Node *node) const; 73 virtual QString fileExtension(const Node *node) const = 0; 74 QString fileName(const Node *node) const; 73 75 QString outFileName(); 74 76 void beginSubPage(const Location& location, const QString& fileName); … … 77 79 QTextStream& out(); 78 80 81 QString naturalLanguage; 82 QString outputEncoding; 83 QTextCodec* outputCodec; 84 bool parseArg(const QString& src, 85 const QString& tag, 86 int* pos, 87 int n, 88 QStringRef* contents, 89 QStringRef* par1 = 0, 90 bool debug = false); 91 79 92 private: 80 QStack<QTextStream 93 QStack<QTextStream*> outStreamStack; 81 94 }; 82 95
Note:
See TracChangeset
for help on using the changeset viewer.