Ocular Engine
ResourcePriorityBehaviour.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_RESOURCES_ResourcePriorityBehaviour__H__
19 #define __H__OCULAR_RESOURCES_ResourcePriorityBehaviour__H__
20 
21 //------------------------------------------------------------------------------------------
22 
27 namespace Ocular
28 {
33  namespace Core
34  {
38  enum class ResourcePriorityBehaviour : unsigned
39  {
40  LeastRecentlyUsed = 0,
41  LeastFrequentlyUsed,
42  SizeAscending,
43  SizeDescending
44  };
45  }
49 }
54 //------------------------------------------------------------------------------------------
55 
56 #endif
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70