showAdd static method
Implementation
static bool showAdd() {
switch(AppConfig.instance.appInUse) {
case AppInUse.c:
return true;
case AppInUse.e:
return true;
case AppInUse.g:
return true;
default:
break;
}
return false;
}