nod/include/NODLib.hpp

22 lines
349 B
C++
Raw Normal View History

2015-06-26 19:30:03 +00:00
#ifndef __NOD_LIB__
#define __NOD_LIB__
#include <memory>
namespace NOD
{
2015-06-28 05:43:53 +00:00
class DiscBase;
2015-06-29 08:59:54 +00:00
std::unique_ptr<DiscBase> OpenDiscFromImage(const char* path);
2015-06-28 05:43:53 +00:00
std::unique_ptr<DiscBase> OpenDiscFromImage(const char* path, bool& isWii);
2015-06-26 19:30:03 +00:00
}
2015-06-28 05:43:53 +00:00
#include "DiscGCN.hpp"
#include "DiscWii.hpp"
#include "IDiscIO.hpp"
#include "Util.hpp"
2015-06-26 19:30:03 +00:00
#endif // __NOD_LIB__