You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
663 B
19 lines
663 B
#include "system_quotas.h"
|
|
#include "ubconfig_quotas.h"
|
|
|
|
class Back_Back{
|
|
public:
|
|
string flag_mode;
|
|
string partition;
|
|
string sys_flag;
|
|
Quotas_sys::Quotas_sys obj_quotas_sys = Quotas_sys::Quotas_sys();
|
|
Quotas_ubconfig::Quotas_ubconfig obj_quotas_ubconfig = Quotas_ubconfig::Quotas_ubconfig();
|
|
public:
|
|
Back_Back();
|
|
void set_mode(string flag_mode);
|
|
void set_partition(string partition);
|
|
void set_sys_flag(string sys_flag);
|
|
bool wrapper_off_quotas(string quotas_type);
|
|
string handler_quotas_type(string quotas_type);
|
|
bool wrapper_on_quotas(string quotas_type);
|
|
}; |