Flutter Engine
 
Loading...
Searching...
No Matches
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
9static_assert(__has_feature(objc_arc), "ARC must be enabled.");
10
11namespace flutter {
12
13fml::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
fml::CommandLine CommandLineFromNSProcessInfo(NSProcessInfo *processInfoOrNil=nil)
CommandLine CommandLineFromIterators(InputIterator first, InputIterator last)