mirror of
https://github.com/electron/electron.git
synced 2026-01-29 17:28:18 -05:00
14 lines
215 B
C++
14 lines
215 B
C++
#ifndef BRIGHTRAY_COMMON_APPLICATION_INFO_H_
|
|
#define BRIGHTRAY_COMMON_APPLICATION_INFO_H_
|
|
|
|
#include <string>
|
|
|
|
namespace brightray {
|
|
|
|
std::string GetApplicationName();
|
|
std::string GetApplicationVersion();
|
|
|
|
}
|
|
|
|
#endif
|