Wejście pełnej linii jako wejściowe w CPP

string line;

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