mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Replaced all copyright symbols with (c) to improve cross-platform reading Added classes to XFX::Audio namespace Added and updated classes in XFX::Graphics namespace Updated event function signature Replaced const char* ToString() with const String& ToString()
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
/*****************************************************************************
|
|
* Int64.h *
|
|
* *
|
|
* XFX System::Int64 definition file *
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
|
*****************************************************************************/
|
|
#ifndef _SYSTEM_INT64_
|
|
#define _SYSTEM_INT64_
|
|
|
|
#include <System/Interfaces.h>
|
|
|
|
namespace System
|
|
{
|
|
class String;
|
|
|
|
// Represents a signed, 64-bit integer.
|
|
struct Int64 : IComparable<Int64>, IEquatable<Int64>, Object
|
|
{
|
|
private:
|
|
long long value;
|
|
|
|
public:
|
|
static const long long MaxValue;
|
|
static const long long MinValue;
|
|
|
|
Int64();
|
|
Int64(const Int64 &obj);
|
|
Int64(const long long &obj);
|
|
|
|
int CompareTo(const Int64 other) const;
|
|
bool Equals(Object const * const obj) const;
|
|
bool Equals(const Int64 other) const;
|
|
int GetHashCode() const;
|
|
int GetType() const;
|
|
const String& ToString() const;
|
|
static const String& ToString(const long long value);
|
|
static bool TryParse(const String& str, out long long* result);
|
|
|
|
operator long long() const;
|
|
bool operator==(const Int64& right) const;
|
|
bool operator!=(const Int64& right) const;
|
|
};
|
|
}
|
|
|
|
#endif //_SYSTEM_INT64_
|