コード例 #1
0
ファイル: pos.cpp プロジェクト: faesong/oom
Pos operator+(Pos a, int b)
{
    Pos c;
    c.setType(a.type());
    return c += b;
}