#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
ifstream RapidShit ("C:\\Rapid.txt");
string ****Nipples;
if(RapidShit.is_open())
{
while (! RapidShit.eof() )
{
getline(RapidShit, ****Nipples);
if(****Nipples == "asdasdasd")
{
// how to skip 2 lines and get the other 2 into the buffers
}
}
}
cin.get();
return 0;
}