00001 #if !defined(__MCSYSTEM_H_)
00002 #define __MCSYSTEM_H_
00003
00004 #ident "@(#)$Id: MCSystem.h,v 1.4 2004/12/02 07:05:20 mike Exp $"
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "mcllib/MCString.h"
00026 #include "mcllib/MCBase.h"
00027 #include "mcllib/MCTypes.h"
00028
00029 namespace mcllib
00030 {
00035 class MCSystem : public MCBase
00036 {
00037 public:
00041 MCSystem();
00049 MCSystem(const MCString& hostName);
00051 char getFileSeparator() const;
00053 MCString getHostName() const;
00055 MCString getSystemName() const;
00057 MCString getRelease() const;
00059 MCString getArchitecture() const;
00061 mcint32 getPageSize() const;
00063 mcint32 getCPUCount() const;
00064 };
00065 };
00066
00067 #endif