From 7028cbe09c688437910a25623098762bf0fa592d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:28:34 +1000 Subject: Move Irrlicht to src/others. --- .../_i_attribute_exchanging_object_8h_source.html | 178 +++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/_i_attribute_exchanging_object_8h_source.html (limited to 'src/others/irrlicht-1.8.1/doc/html/_i_attribute_exchanging_object_8h_source.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/_i_attribute_exchanging_object_8h_source.html b/src/others/irrlicht-1.8.1/doc/html/_i_attribute_exchanging_object_8h_source.html new file mode 100644 index 0000000..fb96400 --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/_i_attribute_exchanging_object_8h_source.html @@ -0,0 +1,178 @@ + + + + +Irrlicht 3D Engine: IAttributeExchangingObject.h Source File + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+
+
IAttributeExchangingObject.h
+
+
+Go to the documentation of this file.
00001 // Copyright (C) 2002-2012 Nikolaus Gebhardt
+00002 // This file is part of the "Irrlicht Engine".
+00003 // For conditions of distribution and use, see copyright notice in irrlicht.h
+00004 
+00005 #ifndef __I_ATTRIBUTE_EXCHANGING_OBJECT_H_INCLUDED__
+00006 #define __I_ATTRIBUTE_EXCHANGING_OBJECT_H_INCLUDED__
+00007 
+00008 #include "IReferenceCounted.h"
+00009 
+00010 
+00011 namespace irr
+00012 {
+00013 
+00014 namespace io
+00015 {
+00016 
+00017 class IAttributes;
+00018 
+00020 enum E_ATTRIBUTE_READ_WRITE_FLAGS
+00021 {
+00023     EARWF_FOR_FILE = 0x00000001,
+00024 
+00026     EARWF_FOR_EDITOR = 0x00000002,
+00027 
+00029     EARWF_USE_RELATIVE_PATHS = 0x00000004
+00030 };
+00031 
+00032 
+00034 struct SAttributeReadWriteOptions
+00035 {
+00037     SAttributeReadWriteOptions()
+00038         : Flags(0), Filename(0)
+00039     {
+00040     }
+00041 
+00043     s32 Flags;
+00044 
+00046     const fschar_t* Filename;
+00047 };
+00048 
+00049 
+00051 class IAttributeExchangingObject : virtual public IReferenceCounted
+00052 {
+00053 public:
+00054 
+00056 
+00058     virtual void serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options=0) const {}
+00059 
+00061 
+00063     virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options=0) {}
+00064 
+00065 };
+00066 
+00067 } // end namespace io
+00068 } // end namespace irr
+00069 
+00070 #endif
+00071 
+
+
+ + + + + -- cgit v1.1