equal
deleted
inserted
replaced
|
1 |
|
2 #include "xmlditaparammap.h" |
|
3 #include <stdio.h> |
|
4 |
|
5 void DumpDocBlockContents(const DocBlockContentsType& theBlock) |
|
6 { |
|
7 ParamDescriptionMap::ConstIterator it; |
|
8 printf("DumpDocBlockContents:\n"); |
|
9 printf("Parameters:\n"); |
|
10 for (it = theBlock.paramMap.begin(); it != theBlock.paramMap.end(); ++it) { |
|
11 printf("%s: %s\n", it.key().data(), it.data().data()); |
|
12 } |
|
13 printf("Template types:\n"); |
|
14 for (it = theBlock.tparamMap.begin(); it != theBlock.tparamMap.end(); ++it) { |
|
15 printf("%s: %s\n", it.key().data(), it.data().data()); |
|
16 } |
|
17 printf("Return: %s\n", theBlock.returnDoc.data()); |
|
18 printf("\n"); |
|
19 } |
|
20 |