dolphin/Source/Core
Lioncash d9eb7c4e80 NANDContentLoader: Add IOFile forward declaration
This would previously fail to compile when included in files that do not
include FileUtil.h due to lack of a type declaration.

This moves the constructor and destructor into the cpp file in order to
satisfy the requirements of unique_ptr construction and deletion. That is,
unique_ptr requires a concrete type at the point of construction and
destruction. If the constructor or destructor is left in the header, then
at the point of construction or destruction, IOFile will still be
considered an incomplete type, as unique_ptr's deleter will still only be
able to see the forward declaration, which it can't use.
2016-10-14 20:27:22 -04:00
..
AudioCommon Fix missing includes 2016-10-07 23:46:41 +02:00
Common DebugInterface: Make GetRawMemoryString return a std::string 2016-10-07 10:26:26 -04:00
Core Merge pull request #4332 from leoetlino/sync-sysconf-on-exit 2016-10-14 09:57:10 +02:00
DiscIO NANDContentLoader: Add IOFile forward declaration 2016-10-14 20:27:22 -04:00
DolphinQt2 Merge pull request #4254 from ligfx/check_errors_postprocessing 2016-10-02 20:42:39 -07:00
DolphinWX DolphinWX: Move creation of debugger menu items into CFrame 2016-10-10 19:53:33 -04:00
InputCommon Fix missing includes 2016-10-07 23:46:41 +02:00
UICommon Fix missing includes 2016-10-07 23:46:41 +02:00
VideoBackends VideoSW: Use VideoCommon frame dumping. 2016-10-11 22:32:06 +02:00
VideoCommon Merge pull request #4341 from degasus/syncgpufix 2016-10-12 07:23:38 -04:00
CMakeLists.txt