diff options
Diffstat (limited to 'doc/faq.doc')
-rw-r--r-- | doc/faq.doc | 39 |
1 files changed, 6 insertions, 33 deletions
diff --git a/doc/faq.doc b/doc/faq.doc index 8ade978..51f3c24 100644 --- a/doc/faq.doc +++ b/doc/faq.doc @@ -237,39 +237,12 @@ various buffers and then run "texconfig init". <li><b>Why are dependencies via STL classes not shown in the dot graphs?</b> -Doxygen is unware of the STL classes, so it does not know that class A relates -to class B in the following example - -\code -#include <vector> - -using namespace std; - -class B {}; - -class A -{ - public: - vector<B> m_bvec; -}; -\endcode - -To overcome this problem you could provide the definition of the vector -class to doxygen (by including the file that defines it at the INPUT tag -in the config file). Since STL header files are often messy, a -(possibly) better approach is to include a dummy definition of a vector -class to the input. Here is an example of a dummy STL file for the vector -class: - -\code -namespace std { - /*! STL vector class */ - template<class T> class vector { public: T element; }; -} -\endcode - -I'm still looking for someone who can provide me with definitions -for all (relevant) STL classes. +Doxygen is unware of the STL classes, unless the option BUILTIN_STL_SUPPORT is +turned on. + +<li><b>I have problems getting the search engine to work with PHP5 and/or windows</b> + +Please read <a href="searchengine.html">this</a> for hints on where to look. <li><b>Can I configure doxygen from the command line?</b> |