CommandsTable.h (629B)
1 // Copyright (c) Microsoft Corporation. 2 // Licensed under the MIT License. 3 #pragma once 4 #include "Microsoft/Schema/2_0/OneToManyTableWithMap.h" 5 6 7 namespace AppInstaller::Repository::Microsoft::Schema::V2_0 8 { 9 namespace details 10 { 11 using namespace std::string_view_literals; 12 13 struct CommandsTableInfo 14 { 15 inline static constexpr std::string_view TableName() { return "commands2"sv; } 16 inline static constexpr std::string_view ValueName() { return "command"sv; } 17 }; 18 } 19 20 using CommandsTable = OneToManyTableWithMap<details::CommandsTableInfo>; 21 }