26 lines
323 B
C++
26 lines
323 B
C++
|
#include <iostream>
|
||
|
#include <map>
|
||
|
|
||
|
struct pair
|
||
|
{
|
||
|
std::string offs;
|
||
|
std::string scal;
|
||
|
pair(const std::string& o, const std::string& s)
|
||
|
{
|
||
|
offs = o;
|
||
|
scal = s;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
void f()
|
||
|
{
|
||
|
std::map<std::string,pair> old_ch_names;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
f();
|
||
|
return 0;
|
||
|
}
|