dev/cpp/static_map/static_map.cpp

26 lines
323 B
C++
Raw Normal View History

2011-04-07 17:03:45 +04:00
#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;
}