2013-05-05 18:18:41 +02:00
|
|
|
/********************************************************
|
|
|
|
* System.h *
|
|
|
|
* *
|
|
|
|
* XFX System namespace include file *
|
2013-06-02 14:32:43 +02:00
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
2013-05-05 18:18:41 +02:00
|
|
|
********************************************************/
|
|
|
|
#ifndef _SYSTEM_
|
|
|
|
#define _SYSTEM_
|
|
|
|
|
|
|
|
// Type definitions
|
|
|
|
#include "System/Types.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
//Interfaces
|
|
|
|
//
|
|
|
|
#include "System/Interfaces.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
//Classes
|
|
|
|
//
|
|
|
|
#include "System/Array.h"
|
|
|
|
#include "System/BitConverter.h"
|
|
|
|
#include "System/Buffer.h"
|
|
|
|
#include "System/Console.h"
|
|
|
|
#include "System/DateTime.h"
|
|
|
|
#include "System/Delegates.h"
|
|
|
|
#include "System/Environment.h"
|
|
|
|
#include "System/EventArgs.h"
|
|
|
|
#include "System/Math.h"
|
|
|
|
#include "System/Object.h"
|
|
|
|
#include "System/OperatingSystem.h"
|
|
|
|
#include "System/String.h"
|
|
|
|
#include "System/TimeSpan.h"
|
|
|
|
#include "System/TimeZone.h"
|
|
|
|
#include "System/Version.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
//Enums
|
|
|
|
//
|
|
|
|
#include "System/Enums.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
//Structs
|
|
|
|
//
|
|
|
|
#include "System/Byte.h"
|
|
|
|
#include "System/Boolean.h"
|
|
|
|
#include "System/Double.h"
|
|
|
|
#include "System/Single.h"
|
|
|
|
|
|
|
|
#endif //_SYSTEM_
|