Ninjasturm
Mitglied
Danke für die Hilfe.
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
MWPack::MWPack(std::string Pack, std::string File)
{
this->_Pack = Pack;
this->_File = File;
this->_eof = false;
this->_Load.open(this->_Pack.c_str());
while (true)
{
std::getline(this->_Load, this->_Buffer);
cout << this->_Buffer;
if (this->_Buffer == this->_File)
{
std::getline(this->_Load, this->_Buffer);
cout << " found..." << endl;
if (this->_Buffer == "(%?{?%)")
{
return;
}
cout << " failed..." << endl;
}
}
}
void MWPack::Set(std::string Pack, std::string File)
{
this->_Pack = Pack;
this->_File = File;
}
std::string MWPack::Load()
{
std::string DefaultBuffer = "";
this->_Load >> this->_Buffer;
if (this->_Buffer == "(%?}?%)")
{
this->_eof = true;
return DefaultBuffer;
}
else
{
return this->_Buffer;
}
}
int MWPack::LoadINT()
{
int _BufferINT;
this->_Load >> _BufferINT;
return _BufferINT;
}
bool MWPack::eof()
{
return this->_eof;
}