Summary: T46426056: Add utility to convert nlohmann::json to NSDictionary. Use same in instagram logging module. Differential Revision: D16798341 fbshipit-source-id: 88923fcbcd1ffbed5a468cee4ba2f9482ba81a97
14 lines
295 B
Objective-C
14 lines
295 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
namespace facebook {
|
|
namespace cxxutils {
|
|
using json = nlohmann::json;
|
|
NSDictionary<NSString *, id> *convertNlohmannJSONToNSDictionary(const json &input);
|
|
}
|
|
}
|