Esempio n. 1
0
File: pos.cpp Progetto: faesong/oom
Pos operator+(Pos a, int b)
{
    Pos c;
    c.setType(a.type());
    return c += b;
}