]> git.saurik.com Git - apple/system_cmds.git/blob - msa/VoucherContentSysctl.hpp
system_cmds-670.1.2.tar.gz
[apple/system_cmds.git] / msa / VoucherContentSysctl.hpp
1 //
2 // VoucherContentSysctl.hpp
3 // system_cmds
4 //
5 // Created by James McIlree on 4/29/14.
6 //
7 //
8
9 #ifndef __system_cmds__VoucherContentSysctl__
10 #define __system_cmds__VoucherContentSysctl__
11
12 //
13 // This class is used to manage the voucher contents sysctl
14 class VoucherContentSysctl {
15 protected:
16 int _original_value;
17 int _new_value;
18
19 public:
20 VoucherContentSysctl(bool is_enabled);
21 ~VoucherContentSysctl();
22 };
23
24 #endif /* defined(__system_cmds__VoucherContentSysctl__) */