xdb progress; skeleton trace loading.

This commit is contained in:
Ben Vanik
2014-08-14 23:53:10 -07:00
parent bae26f7dfc
commit 21225b5917
22 changed files with 1236 additions and 18 deletions

23
src/xdb/debug_target.h Normal file
View File

@@ -0,0 +1,23 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2014 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#ifndef XDB_DEBUG_TARGET_H_
#define XDB_DEBUG_TARGET_H_
namespace xdb {
class DebugTarget {
public:
protected:
DebugTarget() = default;
};
} // namespace xdb
#endif // XDB_DEBUG_TARGET_H_