Is it possible to use C++ api from iOS framework built by bazel?

Is it possible to use C++ api from iOS framework built by bazel? I can’t find any doc about that.
I have built the iOS framework like as following :
bazel build --config=ios_fat -c opt --cxxopt=–std=c++17 tensorflow/lite/ios:TensorFlowLiteC_framework

Using this framework, I can use only C api not C++ api.
I have used TensorFlow ver. 2.16.1.
Thank you.