13 lines
215 B
C++
13 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
|