1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4
5
6
7#ifndef _COMPATIBILITYSWITCH_H_
8#define _COMPATIBILITYSWITCH_H_
9
10#include "object.h"
11#include "typehandle.h"
12#include "fcall.h"
13#include "field.h"
14#include "typectxt.h"
15
16class CompatibilitySwitch
17{
18public:
19 static FCDECL2(StringObject*, GetValue, StringObject *switchNameUNSAFE, CLR_BOOL onlyDB);
20};
21
22
23#endif
24
25