Skip to content

Commit

Permalink
updated virtual functions to override
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanya jandhyala committed Oct 11, 2024
1 parent db6a9dd commit 9accc81
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ class GenericConfigurationManagerImpl : public ConfigurationManager
CHIP_ERROR StoreHardwareVersionString(CharSpan hardwareVersionString) override;
CHIP_ERROR StoreSoftwareVersionString(CharSpan softwareVersionString) override;

CHIP_ERROR StoreVendorName(const char * vendorName, size_t vendorNameLen) override;
CHIP_ERROR StoreProductName(const char * productName, size_t productNameLen) override;
CHIP_ERROR StoreHardwareVersionString(const char * hardwareVersionString, size_t hardwareVersionStringLen) override;
CHIP_ERROR StoreSoftwareVersionString(const char * softwareVersionString, size_t softwareVersionStringLen) override;

#if CHIP_CONFIG_TEST
void RunUnitTests() override;
#endif
Expand Down

0 comments on commit 9accc81

Please sign in to comment.