diff options
author | archshift <admin@archshift.com> | 2015-01-19 02:38:43 +0100 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-01-21 21:50:18 +0100 |
commit | a68dda632854986be612d9241cba7e2b48b008bf (patch) | |
tree | 59e3c0f1dc4a5364f9b84e09678e5cc54631911e /src/core/hle/service/cam_u.h | |
parent | Stubbed ptm:play service (diff) | |
download | yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.gz yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.bz2 yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.lz yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.xz yuzu-a68dda632854986be612d9241cba7e2b48b008bf.tar.zst yuzu-a68dda632854986be612d9241cba7e2b48b008bf.zip |
Diffstat (limited to 'src/core/hle/service/cam_u.h')
-rw-r--r-- | src/core/hle/service/cam_u.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/service/cam_u.h b/src/core/hle/service/cam_u.h new file mode 100644 index 000000000..3d48fe76d --- /dev/null +++ b/src/core/hle/service/cam_u.h @@ -0,0 +1,23 @@ +// Copyright 2015 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 CAM_U + +namespace CAM_U { + +class Interface : public Service::Interface { +public: + Interface(); + + std::string GetPortName() const override { + return "cam:u"; +} +}; + +} // namespace |