00001 00002 #ifndef _H_CS_CACHE_LINE 00003 #define _H_CS_CACHE_LINE 00004 00006 class CACHE_LINE { 00007 00008 public: 00010 void* _pointer; 00011 00013 bool _dirty; 00014 00016 CACHE_LINE(); 00017 00019 CACHE_LINE( void* pointer ); 00020 00021 }; 00022 00023 #endif