1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint da0bfcaa6f Added additional types to System::Net namespaces
Fixed code style
Fixed error in Curve.cpp
Added Curve* classes to makefile
2014-07-14 15:03:46 +02:00

51 lines
1.6 KiB
C++

/*****************************************************************************
* Object.h *
* *
* XFX Object definition file *
* Copyright (c) XFX Team. All Rights Reserved *
*****************************************************************************/
#ifndef _SYSTEM_OBJECT_
#define _SYSTEM_OBJECT_
#include <System/Type.h>
namespace System
{
class String;
// Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes.
// This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy.
class Object
{
public:
virtual bool Equals(Object const * const obj) const;
static bool Equals(Object const * const objA, Object const * const objB);
virtual int GetHashCode() const;
static const Type& GetType();
static bool ReferenceEquals(const Object& objA, const Object& objB);
virtual const String ToString() const;
virtual ~Object() { }
};
// syntax: as<[target type]>([source instance])
template <typename T *, typename U *>
U * as(T * const source)
{
Type typeCode = T::GetType(); // make sure source is an Object
Type destTypeCode = U::GetType(); // same here, but now for U
return (typeCode == destTypeCode) ? (U *)source : NULL;
}
// returns whether the type of obj1 matches that of obj2
bool is(Object const * const obj1, Object const * const obj2);
template<class T, class B> struct Derived_from {
static void constraints(T* p) { B* pb = p; }
Derived_from() { void(*p)(T*) = constraints; }
};
}
#endif //_SYSTEM_OBJECT_