1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint 52ef14a94b Transition from SVN to Git
Added implicit conversion to base types to all primary types (UInt32 et
al)
Added implicit conversion from System::String to const char*
2013-05-05 18:18:41 +02:00

43 lines
999 B
C++

#ifndef _SYSTEM_DOUBLE_
#define _SYSTEM_DOUBLE_
#include <System/Interfaces.h>
#include <System/Object.h>
namespace System
{
class String;
// Represents a double precision floating point value.
struct Double : IComparable<Double>, IEquatable<Double>, Object
{
private:
double value;
public:
static const double Epsilon;
static const double MaxValue;
static const double MinValue;
static const double NaN;
static const double NegativeInfinity;
static const double PositiveInfinity;
Double(const double &obj);
Double(const Double &obj);
int CompareTo(const Double other) const;
bool Equals(const Double other) const;
int GetHashCode() const;
int GetType() const;
const char* ToString() const;
static const char* ToString(const double value);
static bool TryParse(const String& str, out double* result);
operator double() const;
bool operator !=(const Double& right) const;
bool operator ==(const Double& right) const;
};
}
#endif //_SYSTEM_DOUBLE_