I am using very 1.8.1.1 under Windows 7 Pro

With the following variable declaration, in DoxyDocs.pm, "pre" is
inside "detailed":

unsigned char Shim; ///< Correction Factor for Gain. \pre 0..255=0..100 %

Result in DoxyDos.pm:

{
            kind => 'variable',
            name => 'Shim',
            virtualness => 'non_virtual',
            protection => 'public',
            static => 'no',
            brief => {
              doc => [
                {
                  type => 'text',
                  content => 'Correction Factor for Gain.'
                }
              ]
            },
            detailed => {
              doc => [
                {
                  pre => [
                    {
                      type => 'text',
                      content => '0..255=0..100 %'
                    }
                  ]
                }
              ]
            },
            type => 'unsigned char'
          }

Which is presentation oriented. A semantic oriented version would be:

{
            kind => 'variable',
            name => 'Shim',
            virtualness => 'non_virtual',
            protection => 'public',
            static => 'no',
            brief => {
              doc => [
                {
                  type => 'text',
                  content => 'Correction Factor for Gain.'
                }
              ]
            },
            detailed => { },
            pre => [
                    {
                      type => 'text',
                      content => '0..255=0..100 %'
                    }
            ],
            type => 'UINT8'
          }

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to