8 lines
116 B
C++
8 lines
116 B
C++
|
#pragma once
|
||
|
|
||
|
namespace language
|
||
|
{
|
||
|
void set(const std::string& language);
|
||
|
void set_from_index(const int index);
|
||
|
}
|