electron/atom/app/atom_main_args.cc

21 lines
437 B
C++
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/app/atom_main_args.h"
namespace atom {
2015-03-29 11:08:31 +00:00
// static
std::vector<const char*> AtomCommandLine::argv_;
2015-03-29 11:08:31 +00:00
// static
void AtomCommandLine::Init(int argc, const char* argv[]) {
argv_.reserve(argc);
for (int i = 0; i < argc; ++i) {
argv_.push_back(argv[i]);
}
}
} // namespace atom