Code:
//This then the human in its own header
#include "clsMoveableObject.hpp"

class Human : public MoveableObject
{
private:
   UINT m_WalkSpeed;
   UINT m_RunSpeed;
pubilc
   inline void Update();
};

PHP Code:
//This then the human in its own header
#include "clsMoveableObject.hpp"

class Human : public MoveableObject
{
private:
   
UINT m_WalkSpeed;
   
UINT m_RunSpeed;
pubilc
   
[hl=#FFFF33]inline void Update();[/hl]
};