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();
|
||
|
}
|
||
|
|
||
|
}
|