2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-12-31 12:24:30 +00:00
|
|
|
// 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() {
|
2015-04-14 07:55:41 +00:00
|
|
|
return ATOM_PRODUCT_NAME;
|
2013-12-31 12:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetApplicationVersion() {
|
|
|
|
return ATOM_VERSION_STRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace brightray
|