X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/9701b7ab4dc4cd709ad4dcaa750fc0021f15e231..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/include/stg/admin_conf.inc.h diff --git a/include/stg/admin_conf.inc.h b/include/stg/admin_conf.inc.h deleted file mode 100644 index 44897a08..00000000 --- a/include/stg/admin_conf.inc.h +++ /dev/null @@ -1,35 +0,0 @@ - /* - $Revision: 1.1 $ - $Date: 2010/09/10 01:45:24 $ - $Author: faust $ - */ - -#ifndef ADMIN_CONF_INC_H -#define ADMIN_CONF_INC_H - -inline -uint16_t PRIV::ToInt() const -{ -uint16_t p = (userStat << 0) | - (userConf << 2) | - (userCash << 4) | - (userPasswd << 6) | - (userAddDel << 8) | - (adminChg << 10) | - (tariffChg << 12); -return p; -} - -inline -void PRIV::FromInt(uint16_t p) -{ -userStat = (p & 0x0003) >> 0x00; // 1+2 -userConf = (p & 0x000C) >> 0x02; // 4+8 -userCash = (p & 0x0030) >> 0x04; // 10+20 -userPasswd = (p & 0x00C0) >> 0x06; // 40+80 -userAddDel = (p & 0x0300) >> 0x08; // 100+200 -adminChg = (p & 0x0C00) >> 0x0A; // 400+800 -tariffChg = (p & 0x3000) >> 0x0C; // 1000+2000 -} - -#endif