2010-12-04 16:14:34 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* System.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX System namespace include file *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
|
|
|
|
#ifndef _SYSTEM_
|
|
|
|
|
#define _SYSTEM_
|
|
|
|
|
|
|
|
|
|
// Type definitions
|
|
|
|
|
#include "System/Types.h"
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
//Interfaces
|
|
|
|
|
//
|
|
|
|
|
#include "System/Interfaces.h"
|
2010-12-27 01:01:25 +00:00
|
|
|
|
|
2010-12-04 16:14:34 +00:00
|
|
|
|
//
|
|
|
|
|
//Classes
|
|
|
|
|
//
|
|
|
|
|
#include "System/Array.h"
|
|
|
|
|
#include "System/BitConverter.h"
|
|
|
|
|
#include "System/Buffer.h"
|
2011-11-07 01:29:50 +00:00
|
|
|
|
#include "System/Console.h"
|
2010-12-04 16:14:34 +00:00
|
|
|
|
#include "System/DateTime.h"
|
2010-12-27 01:01:25 +00:00
|
|
|
|
#include "System/Delegates.h"
|
|
|
|
|
#include "System/Environment.h"
|
|
|
|
|
#include "System/EventArgs.h"
|
2010-12-04 16:14:34 +00:00
|
|
|
|
#include "System/Math.h"
|
2010-12-27 01:01:25 +00:00
|
|
|
|
#include "System/Object.h"
|
|
|
|
|
#include "System/OperatingSystem.h"
|
|
|
|
|
#include "System/String.h"
|
2010-12-04 16:14:34 +00:00
|
|
|
|
#include "System/TimeSpan.h"
|
|
|
|
|
#include "System/TimeZone.h"
|
2010-12-27 01:01:25 +00:00
|
|
|
|
#include "System/Version.h"
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
//Enums
|
|
|
|
|
//
|
|
|
|
|
#include "System/Enums.h"
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
2011-11-07 01:29:50 +00:00
|
|
|
|
//
|
|
|
|
|
//Structs
|
|
|
|
|
//
|
|
|
|
|
#include "System/Byte.h"
|
|
|
|
|
#include "System/Boolean.h"
|
|
|
|
|
#include "System/Double.h"
|
|
|
|
|
#include "System/Single.h"
|
|
|
|
|
|
2010-12-04 16:14:34 +00:00
|
|
|
|
#endif //_SYSTEM_
|