Private implementation class for PublicClass. More...
| PrivateData() | |
| void | internalHelper() |
| union PublicClass::PrivateData::(unnamed union) | addressData |
| struct PublicClass::PrivateData::(unnamed struct) | headerCache |
| int | internalData |
| bool | regularPrivateMember |
| struct PublicClass::PrivateData::(unnamed struct) | requestMetadata |
This class is in a private header (_p.h) and contains internal implementation details. It should only appear in documentation when showinternal is enabled AND private headers are being processed.
Constructor for private data.
This should only appear when showinternal is enabled.
Internal helper function.
This function handles internal implementation details.
Network address data with complex anonymous union.
Similar to qhostaddress_p.h pattern with nested anonymous types.
Cached header data with anonymous struct pattern from Qt.
Replicates the pattern from qnetworkrequest_p.h that causes anonymous type names with full file paths.
Internal data member.
Stores internal state for the public class.
Regular private member.
This is a regular (non-internal) private member in a private header. It should appear when showinternal is enabled, regardless of the
Multiple nested anonymous structures for disambiguation.
Creates complex anonymous type hierarchy to force Clang path naming.