Home | Namespaces | Hierarchy | Alphabetical List | Class list | Files | Namespace Members | Class members | File members | Tutorials

IOSOperator.h

Go to the documentation of this file.
00001 // Copyright (C) 2002-2010 Nikolaus Gebhardt
00002 // This file is part of the "Irrlicht Engine".
00003 // For conditions of distribution and use, see copyright notice in irrlicht.h
00004 
00005 #ifndef __I_OS_OPERATOR_H_INCLUDED__
00006 #define __I_OS_OPERATOR_H_INCLUDED__
00007 
00008 #include "IReferenceCounted.h"
00009 
00010 namespace irr
00011 {
00012 
00014 class IOSOperator : public virtual IReferenceCounted
00015 {
00016 public:
00017 
00019         virtual ~IOSOperator() {}
00020 
00022         virtual const wchar_t* getOperationSystemVersion() const = 0;
00023 
00025         virtual void copyToClipboard(const c8* text) const = 0;
00026 
00028 
00029         virtual const c8* getTextFromClipboard() const = 0;
00030 
00032 
00034         virtual bool getProcessorSpeedMHz(u32* MHz) const = 0;
00035 
00037 
00040         virtual bool getSystemMemory(u32* Total, u32* Avail) const = 0;
00041 
00042 };
00043 
00044 } // end namespace
00045 
00046 #endif
00047 

The Irrlicht Engine
The Irrlicht Engine Documentation © 2003-2010 by Nikolaus Gebhardt. Generated on Sun Oct 24 12:41:57 2010 by Doxygen (1.6.2)