0
votes
0answers
11 views
How do I link to an Objective-C category within a Doxygen comment?
Say I have an ObjC category defined as @interface NSObject (L0SomeCategory) that defines a -doSomething method that I documented. How do I link to its docs from another Doxygen blo …
1
vote
3answers
119 views
c++: generate function call tree
I want to parse current c++ files in a project and list out all the methods/functions in it and then generate the function call and caller trees.
F.g. you can refer how doxygen gen …
1
vote
3answers
49 views
Documentation generation for a java project: should I use doxygen?
I've a java project which needs some documentation, is Doxygen the only way to go ?
I would like to document the code but also the architecture, the Makefiles, in 3 words, the wh …
0
votes
3answers
39 views
Doxygen - function not documented should not be viewable/displayed in the list - Issue document only for documented entities
class EXAMPLE{
public func1()
private func2()
func3()
}
I have checked for documented entities only. I have documentation for func1 and func3 but no documentation for …
0
votes
0answers
18 views
Doxygen - Document COM interface (or ‘create’ custom documentation)
Hi,
Maybe someone here has an idea if that is possible at all:
[Code in header]
class A
{
public:
STDMETHOD(get_ValueFromA)(BOOL *pVal);
STDMETHOD(set_ValueFromA)(BOOL new …
0
votes
2answers
35 views
Issue getting Doxygen to document an enum in C
I have a rather odd problem with Doxygen (1.6.1 on Mac OS X Snow Leopard) in that it does not seem to document my enums no matter what I do. I am programming in C and have followed …
0
votes
2answers
89 views
Choosing C struct name for doxygen?
How can I tell Doxygen to use the first declaration in this code:
typedef struct _decor_extents {
int left;
int right;
int top;
int bottom;
} decor_extents_t;
Ch …
1
vote
1answer
24 views
How do I minimize the number of changes between revisions with new doxygen output?
A subversion repository contains the html, latex and man directories that doxygen generates from the source code. Even for small source code changes, new files are being generated …
1
vote
1answer
63 views
How can I keep doxygen from documenting #defines in a C file?
I have #define values in headers that I certainly want Doxygen to document but I have others in C files that I treat as static constants and I don't want Doxygen to document them. …
2
votes
1answer
147 views
Delphi & Doxygen
Hi,
I wanted to document my source using doxygen + pas2dox. When I set everything up, including the filter and the extraction options (extract everything), doxygen runs fine. But …
0
votes
2answers
53 views
How to associate non-member functions with a class in Doxygen?
I'm sure there's some way to do this with the \defgroup, \addgroup and \@{ \@} tags, but after a couple of hours of trial and (obviously) error, I'm asking SO.....
I have:
class …
4
votes
3answers
118 views
How can I include a subset of a .cpp file in a Doxygen comment?
I'm trying to write some Doxygen comment blocks, and I'd like to include example snippets of code. Of course, I'd like the examples to actually compile so they don't get stale.
M …
0
votes
1answer
27 views
Adding a custom command in doxygen
I'd like to add a custom command to my doxygen documentation. Basically for each C function I'm writing doc for, I need to write which global variables are "touched" in read mode o …
0
votes
3answers
137 views
How can I create Xcode docsets that look and work like the ones in Apple Core Library
I want to create a docset for my API that looks and works like the Apple Core Library docset. For example, look at the page for NSString.
I've tried Doxygen and I've tried headerd …
1
vote
2answers
84 views
How can Doxygen exclude a C++ class?
I want to exclude a class from documentation in Doxygen. Usually these classes are in files named the same, but there are many times when they are included inside other class defin …
