Ejemplo n.º 1
0
Archivo: pos.cpp Proyecto: faesong/oom
Pos operator+(Pos a, int b)
{
    Pos c;
    c.setType(a.type());
    return c += b;
}