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.

22 lines
224 B

  1. #ifndef __BETACORE_COMMON_HPP__
  2. #define __BETACORE_COMMON_HPP__
  3. #define BUFFER_SIZE 1024
  4. namespace betacore
  5. {
  6. enum SHAPE{
  7. NONE,
  8. TRIANGLE,
  9. CIRCLE,
  10. SQUARE,
  11. PENTAGON,
  12. UNKOWN
  13. };
  14. enum MODE
  15. {
  16. ALICE,
  17. BOB,
  18. EVE
  19. };
  20. }
  21. #endif