chromium/third_party/mediapipe/src/mediapipe/framework/api2/const_str.h

#ifndef MEDIAPIPE_FRAMEWORK_API2_CONST_STR_H_
#define MEDIAPIPE_FRAMEWORK_API2_CONST_STR_H_

#include <string>

namespace mediapipe {
namespace api2 {

// This class stores a constant string that can be inspected at compile time
// in constexpr code.
class const_str {};

}  // namespace api2
}  // namespace mediapipe

#endif  // MEDIAPIPE_FRAMEWORK_API2_CONST_STR_H_