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.
26 lines
665 B
26 lines
665 B
#ifndef UBCONFIG_QUOTAS
|
|
#define UBCONFIG_QUOTAS
|
|
|
|
#include "project_lib.h"
|
|
#include "my_type.h"
|
|
#include "my_process.h"
|
|
#include "util.h"
|
|
|
|
namespace Quotas_ubconfig {
|
|
|
|
|
|
class Quotas_ubconfig{
|
|
public:
|
|
map_str_str map_hw_or_sw;
|
|
|
|
map_str_str* map_gui_cfg;
|
|
My_Process::My_Process_system obj_process_system = My_Process::My_Process_system();
|
|
My_Process::My_Process_call obj_process_call = My_Process::My_Process_call();
|
|
Quotas_ubconfig();
|
|
bool off_quota(string partition, string quota_type, string state);
|
|
void format_cmd_quotas(struct struct_quotas& _struct_quota);
|
|
void set_map_gui(map_str_str &map_gui);
|
|
};
|
|
}
|
|
#endif
|