Skip to content

Commit

Permalink
chore: add ConfigurationStoreStub (#676)
Browse files Browse the repository at this point in the history
* chore: add ConfigurationStoreStub

* Drop "virtual" keyword
  • Loading branch information
richardapeters authored Jul 12, 2024
1 parent 89a84b6 commit c67f75a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions services/util/ConfigurationStore.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,19 @@ namespace services
uint32_t lockCount = 0;
};

class ConfigurationStoreStub
: public ConfigurationStoreInterface
{
public:
uint32_t Write() override
{
return 0;
}

void Unlocked() override
{}
};

template<class T>
class ConfigurationStoreAccess
{
Expand Down

0 comments on commit c67f75a

Please sign in to comment.