diff options
author | ROllerozxa <temporaryemail4meh+github@gmail.com> | 2021-12-29 23:00:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-29 23:00:56 +0100 |
commit | 52e03a8485d3f2ad9c2aa14341a2ad5aca74ee9d (patch) | |
tree | 79c04b2041d72c7306e325e9879ce6a07bcd71b8 /include/IGUIEnvironment.h | |
parent | dd09fdcb4e56fc6185ed25d39ab68fad88f31e3b (diff) | |
download | irrlicht-52e03a8485d3f2ad9c2aa14341a2ad5aca74ee9d.tar.xz |
Remove unused attribute saving and loading (#86)
Diffstat (limited to 'include/IGUIEnvironment.h')
-rw-r--r-- | include/IGUIEnvironment.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/IGUIEnvironment.h b/include/IGUIEnvironment.h index 3de1d87..f00a8f6 100644 --- a/include/IGUIEnvironment.h +++ b/include/IGUIEnvironment.h @@ -618,12 +618,6 @@ public: \return True if loading succeeded, else false. */
virtual bool loadGUI(io::IReadFile* file, IGUIElement* parent=0) = 0;
- //! Writes attributes of the gui environment
- virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options=0) const =0;
-
- //! Reads attributes of the gui environment
- virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options=0)=0;
-
//! Find the next element which would be selected when pressing the tab-key
/** If you set the focus for the result you can manually force focus-changes like they
would happen otherwise by the tab-keys.
|