citra/src/core/hle/service/pxi/dev.h
2020-02-13 17:41:23 +08:00

20 lines
399 B
C++

// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service::PXI {
/// Interface to "pxi:dev" service
class DEV final : public ServiceFramework<DEV> {
public:
DEV();
~DEV();
};
} // namespace Service::PXI
BOOST_CLASS_EXPORT_KEY(Service::PXI::DEV)