mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
17 lines
457 B
C++
17 lines
457 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <memory>
|
|
#include <boost/filesystem.hpp>
|
|
#include "OpticalMedia.h"
|
|
|
|
namespace DiskUtils
|
|
{
|
|
typedef std::unique_ptr<COpticalMedia> OpticalMediaPtr;
|
|
typedef std::map<std::string, std::string> SystemConfigMap;
|
|
|
|
OpticalMediaPtr CreateOpticalMediaFromPath(const boost::filesystem::path&);
|
|
SystemConfigMap ParseSystemConfigFile(Framework::CStream*);
|
|
|
|
bool TryGetDiskId(const boost::filesystem::path&, std::string*);
|
|
}
|