Entrar linha completa como entrada no CPP

string line;

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