Questions tagged [doxygen-wizard]
69 questions
2
votes
1 answer
How to generate .dox files?
I would like to generate a documentation for my source code using Doxygen. I have a readymade script for that that use Doxygen. The command to generate that is :
call "%doxygen%" %%f.dox > %%f.log 2> %%f.err
I was wondering How to generate .dox…
user2357839
1
vote
1 answer
Doxygen multi line comments
I am new to Doxygen and trying to comment my code.
I have some issue with the comments: my multi line comments appear in a single line and I don't want to use \\n or
. /** Brief - this is a function Get - Return - */ void func1() { …
. /** Brief - this is a function Get - Return - */ void func1() { …

lsz
- 13
- 4
1
vote
1 answer
__inline__ and __attribute__ confusing Doxygen
(SOLVED, see the solution at the end)
I'm on an embedded C project and have written a .h file with only static forced inline functions. I have documented them like…

Max Kielland
- 5,627
- 9
- 60
- 95
1
vote
0 answers
Setting Recursive tag ON does not searching sub folders for .NET projects
I am a newbie to doxygen tool. I've followed the doxygen configuration guide for generating a HTML document out of my C# source files. I am able to generate the HTML output, but I identified that it is generating output of the files that exists in…

Badri Prasad
- 11
- 1
1
vote
0 answers
How can I configure doxygen to generate html with plain list of files?
I have a project with tree like structure written in C#. I need to list all *.cs files in plain list with comments.
For…

Nick
- 49
- 6
1
vote
1 answer
I have mutiple folders I want to include in doxywizard
I have mutiple folders I want to include in doxywizard. Any Idea how can I do that? Currently If I select folder with multiple subfolder in it and when I run doxygen, It is not showing me any output.

Aarit Soni
- 101
- 1
- 4
1
vote
1 answer
Doxygen are not collecting all \todo in global todo list
I have a problem with doxygen. Not all my \todo are collected in the global todo list, but most of them. I have made a simple C-example with a single source and header file, as well as a configuration file, where i have placed todos everywhere i…

Jesper J
- 21
- 4
1
vote
1 answer
How to hide private class declaration on doxygen documentation
class class1:
public:
...
private:
class impl; //the class that i wanna hide
std::unique_ptr impl_;
//my doxygen file:
EXTRACT_ALL = YES
EXTRACT_PRIVATE = NO
EXTRACT_PACKAGE = NO
EXTRACT_STATIC =…

DDDDD
- 55
- 7
1
vote
1 answer
Doxygen with HTML buttons changing text on click
I wanted to be able to change the displayed text in Doxygen generated documentation. Something like, if I pressed this buttons the following text would change:
This is what I have right now (only displaying the…

João Cartucho
- 3,688
- 32
- 39
1
vote
1 answer
RTF syntax highlighting in Doxygen
I'm trying to create an RTF file to use in MS word of all the C++ files in my Visual Studio project. I'm using the most recent Doxygen and I set SOURCE_BROWSER to true, GENERATE_RTF to true, and RTF_SOURCE_CODE to true.
It says it will provide…

MuchSoUseless
- 11
- 1
1
vote
1 answer
How to generate Doxygen documents from DSL language
I want to generate Doxygen document for my DSL(Domain Specific Language). As my DSL language is totally different from C,C++,Java languages.
Basically mine is eclipse plugin project and we are developing IDE for DSL language in that i want to…

Saran
- 167
- 2
- 3
- 11
1
vote
2 answers
I to add folder nesting in doxygen?
I have multiple classes in my C# project
dir1
-folder1
-file1.cs
-file2.cs
-folder2
-file3.cs
dir2
-folder3
-file.cs
How to maintain this folder structure in doxygen also???
Because in Doxygen it is…

user2095748
- 267
- 1
- 5
- 15
1
vote
1 answer
How to use make/use a Doxygen filter in C++?
The C++ code I have contains some home-made tags which need to be parsed in some specific way. Basically some part of the doc enclosed by some special and tags need to be saved as separate code which will be then executed on the fly to generate…

Couet
- 61
- 3
1
vote
1 answer
How can we change the default html file generated by doxygen?
I am using doxygen and doxywizard for documentation C code.
How to rename the index.html file through configuring doxygen or doxywizard.

Ravi
- 13
- 1
- 7
1
vote
1 answer
Doxygen: Add new type or structure
I want to use doxygen to document a c-like language.
I got some issues to solve keywords which are unknown in the context.
One example, I have to use a callback function called
on timer
{
//normal c- code
}
My question is now, can I adopt…

Luigi Di Carmino
- 11
- 2