wip: no endpoint, role rework, visual ratio
This commit is contained in:
parent
e42dbaa194
commit
d4db24ed7d
12 changed files with 184 additions and 57 deletions
|
|
@ -290,12 +290,22 @@ NGuid OverseerHandler::getGuid() {
|
|||
return this->os->getGuid();
|
||||
}
|
||||
|
||||
void OverseerHandler::setChangeFrontDefaultsFunction(std::function<void(Roles, std::wstring)> changeFrontDefaults){
|
||||
this->changeFrontDefaults = changeFrontDefaults;
|
||||
/*
|
||||
* void OverseerHandler::setChangeFrontDefaultsFunction(std::function<void(Roles, std::wstring)> changeFrontDefaults){
|
||||
* this->changeFrontDefaults = changeFrontDefaults;
|
||||
* }
|
||||
*
|
||||
* void OverseerHandler::changeFrontDefaultsCallback(Roles role, std::wstring endpointId) {
|
||||
* this->changeFrontDefaults(role, endpointId);
|
||||
* }
|
||||
*/
|
||||
|
||||
void OverseerHandler::roleBucketEntryCallback(Roles role, std::wstring endpointId){
|
||||
this->roleBucketEntry(role, endpointId);
|
||||
}
|
||||
|
||||
void OverseerHandler::changeFrontDefaultsCallback(Roles role, std::wstring endpointId) {
|
||||
this->changeFrontDefaults(role, endpointId);
|
||||
void OverseerHandler::setRoleBucketEntryFunction(std::function<void(Roles, std::wstring)> roleBucketEntry) {
|
||||
this->roleBucketEntry = roleBucketEntry;
|
||||
}
|
||||
|
||||
void OverseerHandler::updateFrontEndpointName(Endpoint* ep) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue