summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/caps/caps_ss.h
blob: 381e44fd4baa36afcdf29c7fcec16eaf1096d3d6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                               




                                     

                



                            
                                                                              
       

                                                       


                               
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/service/service.h"

namespace Core {
class System;
}

namespace Service::Capture {

class IScreenShotService final : public ServiceFramework<IScreenShotService> {
public:
    explicit IScreenShotService(Core::System& system_);
    ~IScreenShotService() override;
};

} // namespace Service::Capture