xref: /openbsd-src/gnu/llvm/clang/tools/clang-format-vs/ClangFormat/Guids.cs (revision e5dd70708596ae51455a0ffa086a00c5b29f8583)
1*e5dd7070Spatrick using System;
2*e5dd7070Spatrick 
3*e5dd7070Spatrick namespace LLVM.ClangFormat
4*e5dd7070Spatrick {
5*e5dd7070Spatrick     static class GuidList
6*e5dd7070Spatrick     {
7*e5dd7070Spatrick         public const string guidClangFormatPkgString = "c5286038-25d3-4f65-83a8-51fa2df4a146";
8*e5dd7070Spatrick         public const string guidClangFormatCmdSetString = "e39cbab1-0f96-4022-a2bc-da5a9db7eb78";
9*e5dd7070Spatrick 
10*e5dd7070Spatrick         public static readonly Guid guidClangFormatCmdSet = new Guid(guidClangFormatCmdSetString);
11*e5dd7070Spatrick     };
12*e5dd7070Spatrick }
13