mirror of
https://github.com/electron/electron.git
synced 2026-02-11 23:54:57 -05:00
14 lines
190 B
C++
14 lines
190 B
C++
#include "common/application_info.h"
|
|
|
|
namespace brightray {
|
|
|
|
std::string GetApplicationName() {
|
|
return std::string();
|
|
}
|
|
|
|
std::string GetApplicationVersion() {
|
|
return std::string();
|
|
}
|
|
|
|
}
|