Flutter iOS Embedder
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
command_line.mm
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
6 
7 #import <Foundation/Foundation.h>
8 
9 static_assert(__has_feature(objc_arc), "ARC must be enabled.");
10 
11 namespace flutter {
12 
13 fml::CommandLine CommandLineFromNSProcessInfo(NSProcessInfo* processInfoOrNil) {
14  std::vector<std::string> args_vector;
15  auto processInfo = processInfoOrNil ? processInfoOrNil : [NSProcessInfo processInfo];
16 
17  for (NSString* arg in processInfo.arguments) {
18  args_vector.emplace_back(arg.UTF8String);
19  }
20 
21  return fml::CommandLineFromIterators(args_vector.begin(), args_vector.end());
22 }
23 
24 } // namespace flutter
command_line.h
flutter
Definition: accessibility_bridge.h:27
flutter::CommandLineFromNSProcessInfo
fml::CommandLine CommandLineFromNSProcessInfo(NSProcessInfo *processInfoOrNil=nil)
Definition: command_line.mm:13