summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/aoc/aoc_u.cpp
blob: 2096b707f9a4984bc8c9b22b9a76668a06b68256 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include <string>
#include "core/hle/service/aoc/aoc_u.h"

namespace Service {
namespace AOC {

void InstallInterfaces(SM::ServiceManager& service_manager) {
    std::make_shared<AOC_U>()->InstallAsService(service_manager);
}

AOC_U::AOC_U() : ServiceFramework("aoc:u") {}

} // namespace AOC
} // namespace Service