Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118155835
HexaByte.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jun 18, 03:08
Size
563 B
Mime Type
text/x-c
Expires
Fri, Jun 20, 03:08 (2 d)
Engine
blob
Format
Raw Data
Handle
26831380
Attached To
R6621 SBCP High-Level Driver
HexaByte.h
View Options
/**
* \file HexaByte.h
*
* \date Oct 23, 2012
* \author Alexandre Tuleu
*/
#ifndef LIBSBCP_TOOL_HEXABYTE_H_
#define LIBSBCP_TOOL_HEXABYTE_H_
#include <iostream>
class HexaByte {
public :
friend std::ostream & operator << (std::ostream & out, const HexaByte & b);
friend std::istream & operator >> (std::istream & in, HexaByte & b);
const static unsigned int UnitializedByteValue = 0x0f00;
HexaByte();
~HexaByte();
unsigned int Value() const;
bool IsUnitialized() const;
protected :
unsigned int d_value;
};
#endif // LIBSBCP_TOOL_HEXABYTE_H_
Event Timeline
Log In to Comment