Include the application's version number in the user agent string

This commit is contained in:
Adam Roben 2013-04-08 12:41:30 -04:00
parent 3cef0dd98c
commit d2c04779e4
9 changed files with 51 additions and 30 deletions

View file

@ -0,0 +1,13 @@
#ifndef BRIGHTRAY_COMMON_APPLICATION_INFO_H_
#define BRIGHTRAY_COMMON_APPLICATION_INFO_H_
#include <string>
namespace brightray {
std::string GetApplicationName();
std::string GetApplicationVersion();
}
#endif