Home | Namespaces | Hierarchy | Alphabetical List | Class list | Files | Namespace Members | Class members | File members | Tutorials
IOSOperator.h
Go to the documentation of this file.
1 // Copyright (C) 2002-2010 Nikolaus Gebhardt
2 // This file is part of the "Irrlicht Engine".
3 // For conditions of distribution and use, see copyright notice in irrlicht.h
4 
5 #ifndef __I_OS_OPERATOR_H_INCLUDED__
6 #define __I_OS_OPERATOR_H_INCLUDED__
7 
8 #include "IReferenceCounted.h"
9 
10 namespace irr
11 {
12 
14 class IOSOperator : public virtual IReferenceCounted
15 {
16 public:
17 
19  virtual ~IOSOperator() {}
20 
22  virtual const wchar_t* getOperationSystemVersion() const = 0;
23 
25  virtual void copyToClipboard(const c8* text) const = 0;
26 
28 
29  virtual const c8* getTextFromClipboard() const = 0;
30 
32 
34  virtual bool getProcessorSpeedMHz(u32* MHz) const = 0;
35 
37 
40  virtual bool getSystemMemory(u32* Total, u32* Avail) const = 0;
41 
42 };
43 
44 } // end namespace
45 
46 #endif
47 

The Irrlicht Engine
The Irrlicht Engine Documentation © 2003-2010 by Nikolaus Gebhardt. Generated on Tue Jun 5 2012 17:57:12 by Doxygen (1.8.1)