mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
19 lines
No EOL
431 B
C++
19 lines
No EOL
431 B
C++
#pragma once
|
|
#include <fnd/types.h>
|
|
#include <fnd/List.h>
|
|
#include <nn/hac/KernelCapabilityEntry.h>
|
|
|
|
namespace nn
|
|
{
|
|
namespace hac
|
|
{
|
|
class IKernelCapabilityHandler
|
|
{
|
|
public:
|
|
virtual void importKernelCapabilityList(const fnd::List<KernelCapabilityEntry>& caps) = 0;
|
|
virtual void exportKernelCapabilityList(fnd::List<KernelCapabilityEntry>& caps) const = 0;
|
|
virtual void clear() = 0;
|
|
virtual bool isSet() const = 0;
|
|
};
|
|
}
|
|
} |