Guest User

Untitled

a guest
Jun 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. enum EFoo {
  2.   E_001 = 0x00000001,
  3.   E_002 = 0x00000002,
  4.   E_004 = 0x00000004,
  5.   E_008 = 0x00000008,
  6.   E_016 = 0x00000010,
  7.   E_032 = 0x00000020,
  8.   E_064 = 0x00000040,
  9.   E_128 = 0x00000080,
  10.   E_003 = E_002 | E_001,
  11.   E_005 = E_004 | E_001,
  12.   E_006 = E_004 | E_002,
  13.   E_007 = E_004 | E_002 | E_003,
  14.   // kill me now
  15. };
Add Comment
Please, Sign In to add comment