canezzy

globals

Apr 3rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #ifndef _GLOBALS_H_
  2. #define _GLOBALS_H_
  3.  
  4. #include <queue>
  5. #include <vector>
  6. #include "defines.h"
  7.  
  8. #include "tbb/concurrent_hash_map.h"
  9. #include "tbb/concurrent_vector.h"
  10.  
  11. using namespace std;
  12. using namespace tbb;
  13. // globals
  14. queue<unsigned char> in2HighPassQueue;
  15. concurrent_vector<short> highPass2ClipQueue;
  16. concurrent_vector<unsigned char> clip2CounterVector;
  17. concurrent_hash_map<unsigned char, unsigned int> couterValues;
  18.  
  19. #endif
Add Comment
Please, Sign In to add comment