ControllerInterface: Include memory to fix building without pch

All affected files use shared_ptr but do not include memory which breaks
building without precompiled headers.
This commit is contained in:
Christian Widmer 2016-06-26 05:34:09 +02:00
parent 3a26167148
commit be922730b3
4 changed files with 4 additions and 0 deletions

View file

@ -2,6 +2,7 @@
// Licensed under GPLv2+ // Licensed under GPLv2+
// Refer to the license.txt file included. // Refer to the license.txt file included.
#include <memory>
#include <sstream> #include <sstream>
#include <string> #include <string>

View file

@ -4,6 +4,7 @@
#pragma once #pragma once
#include <memory>
#include <mutex> #include <mutex>
#include <string> #include <string>
#include <vector> #include <vector>

View file

@ -6,6 +6,7 @@
#include <cassert> #include <cassert>
#include <iostream> #include <iostream>
#include <map> #include <map>
#include <memory>
#include <string> #include <string>
#include <vector> #include <vector>

View file

@ -4,6 +4,7 @@
#pragma once #pragma once
#include <memory>
#include <string> #include <string>
#include "InputCommon/ControllerInterface/Device.h" #include "InputCommon/ControllerInterface/Device.h"