Update whitelist and blacklist stubs to add SeEnabled(bool) (#1429)

This commit is contained in:
Abtin Keshavarzian
2017-03-03 14:38:46 -08:00
committed by Jonathan Hui
parent 04caca7cc8
commit 1263c82463
2 changed files with 4 additions and 8 deletions
+2 -4
View File
@@ -50,12 +50,10 @@ public:
Blacklist(void) { }
void Enable(void) { }
void Disable(void) { }
bool IsEnabled(void) const { return false; }
void SetEnabled(bool) { }
int GetMaxEntries(void) const { return 0; }
ThreadError GetEntry(uint8_t, Entry &) const { return kThreadError_NotImplemented; }
+2 -4
View File
@@ -50,12 +50,10 @@ public:
Whitelist(void) { }
void Enable(void) { }
void Disable(void) { }
bool IsEnabled(void) const { return false; }
void SetEnabled(bool) { }
int GetMaxEntries(void) const { return 0; }
ThreadError GetEntry(uint8_t, Entry &) const { return kThreadError_NotImplemented; }