nod/include/NOD/DiscGCN.hpp

20 lines
234 B
C++
Raw Normal View History

2015-06-26 19:30:03 +00:00
#ifndef __NOD_DISC_GCN__
#define __NOD_DISC_GCN__
#include "DiscBase.hpp"
namespace NOD
{
class DiscGCN : public DiscBase
{
public:
2015-06-28 05:43:53 +00:00
DiscGCN(std::unique_ptr<IDiscIO>&& dio);
bool commit();
2015-06-26 19:30:03 +00:00
};
}
#endif // __NOD_DISC_GCN__