2013-12-31 12:24:30 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/atom_version.h"
|
2013-12-31 12:24:30 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
std::string GetApplicationName() {
|
|
|
|
return "Atom-Shell";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetApplicationVersion() {
|
|
|
|
return ATOM_VERSION_STRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace brightray
|