added changed event handler.

This commit is contained in:
barant 2024-12-18 11:26:58 -08:00
parent 7eb2417456
commit 10df4a6a99
4 changed files with 8 additions and 3 deletions

View File

@ -24,7 +24,7 @@ namespace coreutils {
write(*this);
}
void changed(ZString key, ZString value) overide;
};

View File

@ -217,4 +217,6 @@ namespace coreutils {
return output;
}
void JString::changed(ZString key, ZString value) {}
}

View File

@ -69,6 +69,7 @@ namespace coreutils {
Proxy& operator=(coreutils::MString value) {
jstring.set(key, value);
jstring.changed(key, value);
return *this;
}
@ -85,6 +86,8 @@ namespace coreutils {
MString pretty();
virtual void changed(ZString key, ZString value);
private:
void removeWhitespace();

Binary file not shown.