[Doxygen-users] no matching class member
Brought to you by:
dimitri
|
From: Mwoua <dav...@le...> - 2018-11-30 15:55:02
|
Hello, im trying to document this contructor: //////////////////////////////////////////////////////////////////////////////////////////////////// /// \fn Core::LdProperty::LdProperty( ePropertyType aPropertyType, eCategories aCategory, uint32_t aFeatures, uint32_t aId, uint16_t aDeviceId, uint32_t aUnitSize, size_t aStride, const std::string &aDescription ) /// /// \brief Constructor. /// /// \param aPropertyType Type of the property. /// \param aCategory Category of the property. /// \param aFeatures Combination of feature bits from the eFeatures enum. /// \param aId The globally unique value identifying this property. Also used as the file id. Cannot be 0. /// \param aDeviceId The value used by the device to identify this property. Can be 0 if the property is not involved in communication with /// the device. /// \param aUnitSize The number of bytes for each value (for raw storage for interaction with files and protocol). /// \param aStride The number of bytes for each value in the local storage. /// \param aDescription Name or description of the property. /// /// \author XXX /// \date January 2016 //////////////////////////////////////////////////////////////////////////////////////////////////// Core::LdProperty::LdProperty( ePropertyType aPropertyType, eCategories aCategory, uint32_t aFeatures, uint32_t aId, uint32_t aDeviceId, uint32_t aUnitSize, size_t aStride, const std::string &aDescription ) But it gives me the following error: warning: no matching class member found for Core::LdProperty::LdProperty(Core::LdProperty::ePropertyType aPropertyType, Core::LdProperty::eCategories aCategory, uint32_t aFeatures, uint32_t aId, uint16_t aDeviceId, uint32_t aUnitSize, size_t aStride, const std::string &aDescription) Possible candidates: Core::LdProperty::LdProperty(ePropertyType aPropertyType, eCategories aCategory, uint32_t aFeatures, uint32_t aId, uint32_t aDeviceId, uint32_t aUnitSize, size_t aStride, const std::string &aDescription="") Core::LdProperty::LdProperty() I dont see any difference between signatures, so I dont understand whts the problem. Thanks -- Sent from: http://doxygen.10944.n7.nabble.com/Doxygen-Users-f3.html |