Documentar código é smp mto chato… mas foi justamente isso que me inspirou a escrever um post novo no Dev.to: como usar Doxygen pra deixar seu projeto + organizado e profissional. 📚✨
Tá com uma pegada mais técnica, mas vale a pena conferir! 🚀
dev.to/patrociniolu...
#gamedev #coding #doxygen #devto
Build Doom 3 from source
youtu.be/epcOzfomQJw?...
#GameDev #IndieDev #IndieGameDev #GDB #Doxygen #Doom3
I'm working on a project which includes files written in both C and #Lisp; I'd like to have a common documentation generator for the whole project, to generate integrated documentation.
Has anyone made #Doxygen work with Lisp? Are there any recommendations for a documentation generator which […]
An open file dialog for imgui, looking as slick as the Windows 2.0 one.
An excerpt from the libopenyuusha Doxygen doc
🚀 New release for OpenYuusha! Mostly gruntwork... but LOOK MA, AN OPEN FILE WINDOW! And some pretty documentation for the underlying library... 🌺
gitlab.com/lenaing/open...
#imgui #doxygen #reverseengineering #cppdev #meson #rpgmaker95 #rpgmaker
おはようございます。今日の記事です。
#無料 のドキュメント生成ツール #Doxygen で、#ゲーム エンジン #GodotEngine4 の #GitHub で公開されている #ソースコード から #クラス図 などを #自動生成 します。
Godot4 のソースコードから Doxygen でドキュメントを生成 compota-soft.work/archives/37341
おはようございます。今日の記事です。
#無料 のドキュメント生成ツール #Doxygen で #クラス図 等の #グラフ画像 を生成するために必要な #dot コマンドを #スタートアップ設定 で有効化します。
Doxygen スタートアップ設定でグラフ画像を生成する Dot 機能を有効化 compota-soft.work/archives/37329
おはようございます。今日の記事です。
#プログラム から #HTML や #PDF 形式等の #リファレンス #ドキュメント を生成できる #無料 ソフト #Doxygen を #インストール します。
プログラムのコメントからクラス図等のリファレンスを作成するDoxygenの導入 compota-soft.work/archives/37184
The @kde.org community has an ongoing effort to port its documentation to QDoc, and you can help with that.
Join us tomorrow (14/11) starting at 1PM (UTC) at: matrix.to#/!KfwuSDyCBk...
More info:
blogs.kde.org/2024/11/13/a...
#cpp #kde #documentation #doxygen #kdegoals #qt #api #qdoc #linux
#Doxygen
備忘メモ
@ relates 系のコマンドでクラスに紐づける時、
そのクラスがネームスペース内の場合は それ込みで書かないとダメ!
namespace foo {
class Bar {...};
///@ relates foo::Bar <<<<<< NG:BAR
void foobar(Bar& a) {} }