Entrada Línea completa como entrada en CPP

string line;

while (getline(cin, line)) {
    // do something with the line
}
Fierce Ferret