New concept for IOPorts
This commit is contained in:
@@ -3,6 +3,18 @@
|
||||
#include "../../Auxiliary/complex_bitmap.hpp"
|
||||
|
||||
namespace JabyEngine {
|
||||
template<typename T>
|
||||
struct NormalValue {
|
||||
typedef T Value;
|
||||
typedef T NakedValue;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
struct VolatileValue {
|
||||
typedef volatile T Value;
|
||||
typedef T NakedValue;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
struct VolatilePOD {
|
||||
volatile T raw;
|
||||
|
||||
Reference in New Issue
Block a user