mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Common/LinearDiskCache: Move interface into Common namespace
Gets the interface out of the global namespace.
This commit is contained in:
parent
2a0b90807d
commit
07ed932a09
4 changed files with 17 additions and 14 deletions
|
@ -27,6 +27,8 @@
|
|||
// value_type[value_size] value;
|
||||
//}
|
||||
|
||||
namespace Common
|
||||
{
|
||||
template <typename K, typename V>
|
||||
class LinearDiskCacheReader
|
||||
{
|
||||
|
@ -163,3 +165,4 @@ private:
|
|||
File::IOFile m_file;
|
||||
u32 m_num_entries = 0;
|
||||
};
|
||||
} // namespace Common
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue