Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/cplusplus/155.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C++ 使用强氧剂进行分组->;uml图的输出被复制_C++_Documentation_Uml_Grouping_Doxygen - Fatal编程技术网

C++ 使用强氧剂进行分组->;uml图的输出被复制

C++ 使用强氧剂进行分组->;uml图的输出被复制,c++,documentation,uml,grouping,doxygen,C++,Documentation,Uml,Grouping,Doxygen,嗨!我有一些代码,我想让doxygen记录下来。因此,我对工作良好的UML图感兴趣,但现在我想使用一些类似这样的子组: ///@{ /// @name The lame constants /// @details There are two seperate vectors for the first lame constant (in water and ground) but only one for the shear module (also known as second lame

嗨!我有一些代码,我想让doxygen记录下来。因此,我对工作良好的UML图感兴趣,但现在我想使用一些类似这样的子组:

///@{
/// @name The lame constants
/// @details There are two seperate vectors for the first lame constant (in water and ground) but only one for the shear module (also known as second lame constant), since shear module for water is zero! Every element of the vector belongs to one grid point, linear interpolation within vertical direction will be applied. By using this the assumption of an isotrope media is made!
std::vector<double> lamw;           ///< first lame constant for the water area
std::vector<std::complex<double> > lamb;    ///< first lame constant for the area beyond the seabed
std::vector<double> mub;            ///< shear module (second lame constant) for the area beyond the seabed 
///@}
变量显示两次:在成员变量部分和方法部分。这当然不是我想发生的事情(asterix的部件“太多”)


所以doxygen似乎与我使用的亚组混淆了-我在这里犯了一些错误吗?

这是一个已知的错误。。。。目前尚不清楚这是否是一个无法解决的问题。代码除了在类图的末尾追加成员组项之外,不做任何其他尝试

--------------------
| className        |
--------------------
| + lamw           |
| + lamb           |
| + mub            |
--------------------
| * lamw           |
| * lamb           |
| * mub            |
--------------------