2013-06-02 14:32:43 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* Byte.h *
|
|
|
|
* *
|
|
|
|
* XFX System::Byte structure definition file *
|
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
|
|
|
*****************************************************************************/
|
2013-05-05 18:18:41 +02:00
|
|
|
#ifndef _SYSTEM_BYTE_
|
|
|
|
#define _SYSTEM_BYTE_
|
|
|
|
|
|
|
|
#include "Interfaces.h"
|
|
|
|
#include "Object.h"
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
class String;
|
|
|
|
|
2013-07-12 21:30:13 +02:00
|
|
|
/**
|
|
|
|
* Represents an 8-bit unsigned integer.
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
struct Byte : IComparable<Byte>, IEquatable<Byte>, Object
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
byte value;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static const byte MaxValue;
|
|
|
|
static const byte MinValue;
|
|
|
|
|
|
|
|
Byte();
|
|
|
|
Byte(const Byte &obj);
|
|
|
|
Byte(const byte &obj);
|
|
|
|
|
|
|
|
int CompareTo(const Byte other) const;
|
|
|
|
bool Equals(const Byte other) const;
|
2013-07-12 21:30:13 +02:00
|
|
|
static const Type& GetType();
|
2013-07-11 20:00:07 +02:00
|
|
|
const String ToString() const;
|
|
|
|
static const String ToString(const byte value);
|
2013-05-05 18:18:41 +02:00
|
|
|
static bool TryParse(const String& str, out byte* result);
|
|
|
|
|
|
|
|
operator byte() const;
|
|
|
|
bool operator!=(const Byte& right) const;
|
|
|
|
bool operator==(const Byte& right) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //_SYSTEM_BYTE_
|