forked from mirror/openmw-tes3mp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
416 B
C++
24 lines
416 B
C++
|
|
#include "filter.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
void ESM::Filter::load (ESMReader& esm)
|
|
{
|
|
mFilter = esm.getHNString ("FILT");
|
|
mDescription = esm.getHNString ("DESC");
|
|
}
|
|
|
|
void ESM::Filter::save (ESMWriter& esm)
|
|
{
|
|
esm.writeHNCString ("FILT", mFilter);
|
|
esm.writeHNCString ("DESC", mDescription);
|
|
}
|
|
|
|
void ESM::Filter::blank()
|
|
{
|
|
mFilter.clear();
|
|
mDescription.clear();
|
|
}
|