1#include "stdafx.h" 2#include "KeyMapping.h" 3 4KeyMapping::KeyMapping(const wstring& name, int key) 5{ 6 this->name = name; 7 this->key = key; 8}