1
#pragma once
2

            
3
#include "absl/strings/string_view.h"
4

            
5
namespace Envoy {
6
namespace Runtime {
7

            
8
// This class provides a place to register runtime keys which must be accessed by
9
// generic classes.
10
class Keys {
11
public:
12
  static const absl::string_view GlobalMaxCxRuntimeKey;
13
};
14

            
15
} // namespace Runtime
16
} // namespace Envoy