2010-01-06 16:22:34 +01:00
|
|
|
/*
|
|
|
|
OpenMW - The completely unofficial reimplementation of Morrowind
|
|
|
|
Copyright (C) 2008-2010 Nicolay Korslund
|
|
|
|
Email: < korslund@gmail.com >
|
2018-03-08 21:23:24 +01:00
|
|
|
WWW: https://openmw.org/
|
2010-01-06 16:22:34 +01:00
|
|
|
|
|
|
|
This file (data.h) is part of the OpenMW package.
|
|
|
|
|
|
|
|
OpenMW is distributed as free software: you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License
|
|
|
|
version 3, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
version 3 along with this program. If not, see
|
2018-03-08 21:23:24 +01:00
|
|
|
https://www.gnu.org/licenses/ .
|
2010-01-06 16:22:34 +01:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-02-24 13:51:56 -08:00
|
|
|
#ifndef OPENMW_COMPONENTS_NIF_DATA_HPP
|
|
|
|
#define OPENMW_COMPONENTS_NIF_DATA_HPP
|
2010-01-06 16:22:34 +01:00
|
|
|
|
2022-07-21 15:51:34 +04:00
|
|
|
#include "nifkey.hpp"
|
2015-02-20 17:56:49 +01:00
|
|
|
#include "niftypes.hpp" // Transformation
|
2022-08-15 23:04:54 +02:00
|
|
|
#include "recordptr.hpp"
|
2023-07-09 10:14:27 +00:00
|
|
|
#include <components/nif/node.hpp>
|
2015-02-20 17:56:49 +01:00
|
|
|
|
2010-01-06 16:22:34 +01:00
|
|
|
namespace Nif
|
|
|
|
{
|
|
|
|
|
2010-01-06 20:42:32 +01:00
|
|
|
// Common ancestor for several data classes
|
2020-12-16 01:06:05 +03:00
|
|
|
struct NiGeometryData : public Record
|
2010-01-06 20:42:32 +01:00
|
|
|
{
|
2020-10-04 01:27:49 +03:00
|
|
|
std::vector<osg::Vec3f> vertices, normals, tangents, bitangents;
|
2017-02-17 07:20:50 +01:00
|
|
|
std::vector<osg::Vec4f> colors;
|
|
|
|
std::vector<std::vector<osg::Vec2f>> uvlist;
|
2015-02-17 17:08:55 +01:00
|
|
|
osg::Vec3f center;
|
2012-07-02 21:41:21 -07:00
|
|
|
float radius;
|
2010-01-06 20:42:32 +01:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2010-01-06 20:42:32 +01:00
|
|
|
};
|
|
|
|
|
2023-02-10 23:06:56 +03:00
|
|
|
// Abstract
|
|
|
|
struct NiTriBasedGeomData : public NiGeometryData
|
|
|
|
{
|
2023-09-03 16:52:10 +03:00
|
|
|
uint16_t mNumTriangles;
|
2023-02-10 23:06:56 +03:00
|
|
|
|
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NiTriShapeData : public NiTriBasedGeomData
|
2010-01-06 20:42:32 +01:00
|
|
|
{
|
2012-07-02 21:41:21 -07:00
|
|
|
// Triangles, three vertex indices per triangle
|
2017-02-17 07:20:50 +01:00
|
|
|
std::vector<unsigned short> triangles;
|
2012-07-02 21:41:21 -07:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2010-01-06 20:42:32 +01:00
|
|
|
};
|
|
|
|
|
2023-02-10 23:06:56 +03:00
|
|
|
struct NiTriStripsData : public NiTriBasedGeomData
|
2019-08-08 13:11:24 +03:00
|
|
|
{
|
|
|
|
// Triangle strips, series of vertex indices.
|
2023-09-03 17:41:52 +03:00
|
|
|
std::vector<std::vector<unsigned short>> mStrips;
|
2019-08-08 13:11:24 +03:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2019-08-08 13:11:24 +03:00
|
|
|
};
|
|
|
|
|
2020-05-30 17:59:36 +03:00
|
|
|
struct NiLinesData : public NiGeometryData
|
|
|
|
{
|
|
|
|
// Lines, series of indices that correspond to connected vertices.
|
2023-09-03 16:52:10 +03:00
|
|
|
// NB: assumes <=65536 number of vertices
|
|
|
|
std::vector<uint16_t> mLines;
|
2020-05-30 17:59:36 +03:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2020-05-30 17:59:36 +03:00
|
|
|
};
|
|
|
|
|
2023-08-03 19:55:06 +00:00
|
|
|
struct NiParticlesData : public NiGeometryData
|
|
|
|
{
|
|
|
|
int numParticles{ 0 };
|
|
|
|
|
|
|
|
int activeCount{ 0 };
|
|
|
|
|
|
|
|
std::vector<float> particleRadii, sizes, rotationAngles;
|
|
|
|
std::vector<osg::Quat> rotations;
|
|
|
|
std::vector<osg::Vec3f> rotationAxes;
|
|
|
|
|
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NiRotatingParticlesData : public NiParticlesData
|
|
|
|
{
|
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
|
|
|
|
2020-12-16 01:06:05 +03:00
|
|
|
struct NiPosData : public Record
|
2010-01-07 15:51:42 +01:00
|
|
|
{
|
2015-03-22 23:47:49 +01:00
|
|
|
Vector3KeyMapPtr mKeyList;
|
2012-07-12 08:00:26 -07:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2010-01-07 19:11:03 +01:00
|
|
|
};
|
2010-01-07 15:51:42 +01:00
|
|
|
|
2020-12-16 01:06:05 +03:00
|
|
|
struct NiUVData : public Record
|
2010-01-07 15:51:42 +01:00
|
|
|
{
|
2023-09-03 16:52:10 +03:00
|
|
|
std::array<FloatKeyMapPtr, 4> mKeyList;
|
2012-07-12 08:00:26 -07:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2010-01-07 15:51:42 +01:00
|
|
|
};
|
|
|
|
|
2020-12-16 01:06:05 +03:00
|
|
|
struct NiFloatData : public Record
|
2010-01-07 15:51:42 +01:00
|
|
|
{
|
2015-03-22 23:47:49 +01:00
|
|
|
FloatKeyMapPtr mKeyList;
|
2012-07-12 08:00:26 -07:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2010-01-07 15:51:42 +01:00
|
|
|
};
|
|
|
|
|
2023-09-03 20:49:09 +03:00
|
|
|
struct NiPixelFormat
|
2016-02-15 16:49:58 +01:00
|
|
|
{
|
2023-09-03 20:49:09 +03:00
|
|
|
enum class Format : uint32_t
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2023-09-03 20:49:09 +03:00
|
|
|
RGB = 0,
|
|
|
|
RGBA = 1,
|
|
|
|
Palette = 2,
|
|
|
|
PaletteAlpha = 3,
|
|
|
|
BGR = 4,
|
|
|
|
BGRA = 5,
|
|
|
|
DXT1 = 6,
|
|
|
|
DXT3 = 7,
|
|
|
|
DXT5 = 8,
|
2022-09-22 21:26:05 +03:00
|
|
|
};
|
|
|
|
|
2023-09-03 20:49:09 +03:00
|
|
|
struct ChannelData
|
|
|
|
{
|
|
|
|
enum class Type : uint32_t
|
|
|
|
{
|
|
|
|
Red = 0,
|
|
|
|
Green = 1,
|
|
|
|
Blue = 2,
|
|
|
|
Alpha = 3,
|
|
|
|
Compressed = 4,
|
|
|
|
OffsetU = 5,
|
|
|
|
OffsetV = 6,
|
|
|
|
OffsetW = 7,
|
|
|
|
OffsetQ = 8,
|
|
|
|
Luma = 9,
|
|
|
|
Height = 10,
|
|
|
|
VectorX = 11,
|
|
|
|
VectorY = 12,
|
|
|
|
VectorZ = 13,
|
|
|
|
Padding = 14,
|
|
|
|
Intensity = 15,
|
|
|
|
Index = 16,
|
|
|
|
Depth = 17,
|
|
|
|
Stencil = 18,
|
|
|
|
Empty = 19,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class Convention : uint32_t
|
|
|
|
{
|
|
|
|
NormInt = 0,
|
|
|
|
Half = 1,
|
|
|
|
Float = 2,
|
|
|
|
Index = 3,
|
|
|
|
Compressed = 4,
|
|
|
|
Unknown = 5,
|
|
|
|
Int = 6,
|
|
|
|
};
|
|
|
|
|
|
|
|
Type mType;
|
|
|
|
Convention mConvention;
|
|
|
|
uint8_t mBitsPerChannel;
|
|
|
|
bool mSigned;
|
|
|
|
|
|
|
|
void read(NIFStream* nif);
|
|
|
|
};
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2023-09-03 20:49:09 +03:00
|
|
|
Format mFormat{ Format::RGB };
|
|
|
|
std::array<uint32_t, 4> mColorMasks;
|
|
|
|
uint32_t mBitsPerPixel{ 0 };
|
|
|
|
uint32_t mPixelTiling{ 0 };
|
|
|
|
std::array<uint32_t, 2> mCompareBits;
|
|
|
|
uint32_t mRendererHint{ 0 };
|
|
|
|
uint32_t mExtraData{ 0 };
|
|
|
|
uint8_t mFlags{ 0 };
|
|
|
|
bool mUseSrgb{ false };
|
|
|
|
std::array<ChannelData, 4> mChannels;
|
|
|
|
|
|
|
|
void read(NIFStream* nif);
|
|
|
|
};
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2023-09-03 20:49:09 +03:00
|
|
|
struct NiPixelData : public Record
|
|
|
|
{
|
2016-02-15 16:49:58 +01:00
|
|
|
struct Mipmap
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2023-09-03 20:49:09 +03:00
|
|
|
uint32_t mWidth, mHeight;
|
|
|
|
uint32_t mOffset;
|
2022-09-22 21:26:05 +03:00
|
|
|
};
|
|
|
|
|
2023-09-03 20:49:09 +03:00
|
|
|
NiPixelFormat mPixelFormat;
|
|
|
|
NiPalettePtr mPalette;
|
|
|
|
uint32_t mBytesPerPixel;
|
|
|
|
std::vector<Mipmap> mMipmaps;
|
|
|
|
uint32_t mNumFaces{ 1 };
|
|
|
|
std::vector<uint8_t> mData;
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2022-09-17 19:24:42 +02:00
|
|
|
void post(Reader& nif) override;
|
2016-02-15 16:49:58 +01:00
|
|
|
};
|
|
|
|
|
2021-01-09 13:36:40 +04:00
|
|
|
struct NiColorData : public Record
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2021-01-09 13:36:40 +04:00
|
|
|
Vector4KeyMapPtr mKeyMap;
|
2019-08-13 01:20:30 +03:00
|
|
|
|
|
|
|
void read(NIFStream* nif) override;
|
2021-01-09 13:36:40 +04:00
|
|
|
};
|
2010-01-07 15:51:42 +01:00
|
|
|
|
2016-02-15 16:49:58 +01:00
|
|
|
struct NiVisData : public Record
|
|
|
|
{
|
2023-09-03 18:43:08 +03:00
|
|
|
// TODO: investigate possible use of ByteKeyMap
|
|
|
|
std::shared_ptr<std::map<float, bool>> mKeys;
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2016-02-15 16:49:58 +01:00
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
2012-07-02 21:41:21 -07:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
struct NiSkinInstance : public Record
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2023-09-03 15:21:42 +03:00
|
|
|
NiSkinDataPtr mData;
|
|
|
|
NiSkinPartitionPtr mPartitions;
|
|
|
|
NodePtr mRoot;
|
|
|
|
NodeList mBones;
|
2010-01-07 15:51:42 +01:00
|
|
|
|
2020-12-16 01:06:05 +03:00
|
|
|
void read(NIFStream* nif) override;
|
2022-09-17 19:24:42 +02:00
|
|
|
void post(Reader& nif) override;
|
2012-07-10 02:38:35 -07:00
|
|
|
};
|
|
|
|
|
2021-11-10 19:40:02 +03:00
|
|
|
struct BSDismemberSkinInstance : public NiSkinInstance
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2023-09-03 15:21:42 +03:00
|
|
|
struct BodyPart
|
|
|
|
{
|
|
|
|
uint16_t mFlags;
|
|
|
|
uint16_t mType;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<BodyPart> mParts;
|
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2010-01-07 15:51:42 +01:00
|
|
|
};
|
|
|
|
|
2020-12-16 01:06:05 +03:00
|
|
|
struct NiSkinData : public Record
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2020-12-16 01:06:05 +03:00
|
|
|
struct VertWeight
|
2010-01-24 15:17:50 +01:00
|
|
|
{
|
2015-04-21 20:56:16 +02:00
|
|
|
unsigned short vertex;
|
2012-07-02 21:41:21 -07:00
|
|
|
float weight;
|
2022-09-22 21:26:05 +03:00
|
|
|
};
|
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
struct BoneInfo
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2020-11-07 04:04:46 +03:00
|
|
|
Transformation trafo;
|
2012-07-02 21:41:21 -07:00
|
|
|
osg::Vec3f boundSphereCenter;
|
|
|
|
float boundSphereRadius;
|
|
|
|
std::vector<VertWeight> weights;
|
2022-09-22 21:26:05 +03:00
|
|
|
};
|
2010-01-24 15:17:50 +01:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
Transformation trafo;
|
|
|
|
std::vector<BoneInfo> bones;
|
|
|
|
NiSkinPartitionPtr partitions;
|
2010-01-24 15:17:50 +01:00
|
|
|
|
2021-11-10 19:40:02 +03:00
|
|
|
void read(NIFStream* nif) override;
|
2022-09-17 19:24:42 +02:00
|
|
|
void post(Reader& nif) override;
|
2021-11-10 19:40:02 +03:00
|
|
|
};
|
|
|
|
|
2020-12-16 01:06:05 +03:00
|
|
|
struct NiSkinPartition : public Record
|
2012-07-02 21:41:21 -07:00
|
|
|
{
|
2015-04-21 20:56:16 +02:00
|
|
|
struct Partition
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2020-11-07 04:04:46 +03:00
|
|
|
std::vector<unsigned short> bones;
|
2015-04-21 20:56:16 +02:00
|
|
|
std::vector<unsigned short> vertexMap;
|
2012-07-02 21:41:21 -07:00
|
|
|
std::vector<float> weights;
|
2020-11-07 04:04:46 +03:00
|
|
|
std::vector<std::vector<unsigned short>> strips;
|
|
|
|
std::vector<unsigned short> triangles;
|
2023-07-09 10:14:27 +00:00
|
|
|
std::vector<unsigned short> trueTriangles;
|
2020-11-07 04:04:46 +03:00
|
|
|
std::vector<char> boneIndices;
|
2023-07-09 10:14:27 +00:00
|
|
|
BSVertexDesc mVertexDesc;
|
2023-07-16 03:06:00 +03:00
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
void read(NIFStream* nif);
|
2023-07-16 03:06:00 +03:00
|
|
|
std::vector<unsigned short> getTrueTriangles() const;
|
|
|
|
std::vector<std::vector<unsigned short>> getTrueStrips() const;
|
2022-09-22 21:26:05 +03:00
|
|
|
};
|
2023-07-09 10:14:27 +00:00
|
|
|
unsigned int mPartitionNum;
|
|
|
|
std::vector<Partition> mPartitions;
|
|
|
|
|
|
|
|
unsigned int mDataSize;
|
|
|
|
unsigned int mVertexSize;
|
|
|
|
BSVertexDesc mVertexDesc;
|
|
|
|
std::vector<BSVertexData> mVertexData;
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
void read(NIFStream* nif) override;
|
2012-07-02 21:41:21 -07:00
|
|
|
};
|
2012-07-10 02:38:35 -07:00
|
|
|
|
2012-07-02 21:41:21 -07:00
|
|
|
struct NiMorphData : public Record
|
|
|
|
{
|
2015-02-20 17:56:49 +01:00
|
|
|
struct MorphData
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2015-02-20 17:56:49 +01:00
|
|
|
FloatKeyMapPtr mKeyFrames;
|
2015-03-26 23:15:46 +01:00
|
|
|
std::vector<osg::Vec3f> mVertices;
|
|
|
|
};
|
2023-09-03 16:29:42 +03:00
|
|
|
|
|
|
|
uint8_t mRelativeTargets;
|
2012-07-09 20:53:54 -07:00
|
|
|
std::vector<MorphData> mMorphs;
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2012-07-09 20:53:54 -07:00
|
|
|
void read(NIFStream* nif) override;
|
2012-07-02 21:41:21 -07:00
|
|
|
};
|
2010-01-24 13:49:38 +01:00
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
struct NiKeyframeData : public Record
|
|
|
|
{
|
2015-03-22 23:47:49 +01:00
|
|
|
QuaternionKeyMapPtr mRotations;
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
// may be NULL
|
|
|
|
FloatKeyMapPtr mXRotations;
|
2015-03-22 23:47:49 +01:00
|
|
|
FloatKeyMapPtr mYRotations;
|
|
|
|
FloatKeyMapPtr mZRotations;
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
Vector3KeyMapPtr mTranslations;
|
|
|
|
FloatKeyMapPtr mScales;
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
enum class AxisOrder
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2022-02-18 20:47:34 +03:00
|
|
|
Order_XYZ = 0,
|
|
|
|
Order_XZY = 1,
|
|
|
|
Order_YZX = 2,
|
|
|
|
Order_YXZ = 3,
|
|
|
|
Order_ZXY = 4,
|
|
|
|
Order_ZYX = 5,
|
|
|
|
Order_XYX = 6,
|
|
|
|
Order_YZY = 7,
|
|
|
|
Order_ZXZ = 8
|
2022-09-22 21:26:05 +03:00
|
|
|
};
|
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
AxisOrder mAxisOrder{ AxisOrder::Order_XYZ };
|
2022-09-22 21:26:05 +03:00
|
|
|
|
2020-11-07 04:04:46 +03:00
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
2010-01-07 19:11:03 +01:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
struct NiPalette : public Record
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2020-10-16 22:18:54 +04:00
|
|
|
// 32-bit RGBA colors that correspond to 8-bit indices
|
2023-09-03 16:29:42 +03:00
|
|
|
std::vector<uint32_t> mColors;
|
2010-01-07 15:51:42 +01:00
|
|
|
|
2012-07-12 20:55:11 -07:00
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
2014-12-05 20:58:03 +01:00
|
|
|
|
2015-03-22 23:47:49 +01:00
|
|
|
struct NiStringPalette : public Record
|
2022-02-18 20:47:34 +03:00
|
|
|
{
|
2023-09-03 16:29:42 +03:00
|
|
|
std::string mPalette;
|
|
|
|
|
2022-02-18 20:47:34 +03:00
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
|
|
|
|
2020-12-16 01:06:05 +03:00
|
|
|
struct NiBoolData : public Record
|
2019-08-13 01:20:30 +03:00
|
|
|
{
|
2020-11-07 03:40:21 +03:00
|
|
|
ByteKeyMapPtr mKeyList;
|
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
|
|
|
|
2023-05-22 22:28:05 +03:00
|
|
|
struct BSMultiBound : public Record
|
|
|
|
{
|
|
|
|
BSMultiBoundDataPtr mData;
|
|
|
|
|
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
void post(Reader& nif) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Abstract
|
|
|
|
struct BSMultiBoundData : public Record
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BSMultiBoundOBB : public BSMultiBoundData
|
|
|
|
{
|
|
|
|
osg::Vec3f mCenter;
|
|
|
|
osg::Vec3f mSize;
|
|
|
|
Nif::Matrix3 mRotation;
|
|
|
|
|
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BSMultiBoundSphere : public BSMultiBoundData
|
|
|
|
{
|
|
|
|
osg::Vec3f mCenter;
|
|
|
|
float mRadius;
|
|
|
|
|
|
|
|
void read(NIFStream* nif) override;
|
|
|
|
};
|
2023-08-03 19:55:06 +00:00
|
|
|
|
2010-01-06 16:22:34 +01:00
|
|
|
} // Namespace
|
|
|
|
#endif
|