From 50292bda0bb39306039a1cb3e21bf2ad431409e3 Mon Sep 17 00:00:00 2001 From: Shon Ferguson <shonferg@users.sourceforge.net> Date: Thu, 24 May 2007 00:25:48 +0000 Subject: [PATCH] Addressed Doxygen warnings. --- include/niflib.h | 30 ++++++++++++++++++++---------- include/obj/NiAVObject.h | 4 ++-- include/obj/NiLODNode.h | 2 +- include/obj/NiNode.h | 2 +- include/obj/NiTextureEffect.h | 4 ++-- include/obj/bhkBoxShape.h | 2 +- include/obj/bhkCapsuleShape.h | 4 ++-- include/obj/bhkNiTriStripsShape.h | 4 ++-- include/obj/bhkWorldObject.h | 2 +- 9 files changed, 32 insertions(+), 22 deletions(-) diff --git a/include/niflib.h b/include/niflib.h index 177c52bd..4520af40 100644 --- a/include/niflib.h +++ b/include/niflib.h @@ -160,7 +160,7 @@ NIFLIB_API void WriteNifTree( ostream & in, NiObject * root, const NifInfo & inf /*! * Writes a bunch of files given a base file name, and a pointer to the root object of the Nif file tree. * \param[in] file_name The desired file name for the base NIF file. This name serves as the basis for the names of any Kf files and Kfm files as well. The path is relative to the working directory unless a full path is specified. - * \param[in] root The root object to start from when writing out the NIF file. + * \param[in] root_object The root object to start from when writing out the NIF file. * \param[in] info A NifInfo structure that contains information such as the version of the NIF file to create. * \param[in] export_files What files to write: NIF, NIF + KF + KFM, NIF + KF's + KFM, KF only, KF's only * \param[in] kf_type The KF type (Morrowind style, DAoC style, CivIV style, ...) @@ -208,7 +208,7 @@ NIFLIB_API Ref<NiNode> FindCommonAncestor( const vector< Ref<NiAVObject> > & obj /*! * Returns a list of all the ancestors of a given NiAVObject - * \param leaf[in] The NiAVObject to list the ancestors of. + * \param[in] leaf The NiAVObject to list the ancestors of. * \return A list containing all the ancestors of the given NiAVObject */ NIFLIB_API list< Ref<NiNode> > ListAncestors( NiAVObject * leaf ); @@ -258,7 +258,7 @@ While it is possible to use the pre-compiled DLL file if you are using Microsoft If you need help to do this, there is information about it on our main website here: <a href="http://www.niftools.org/wiki/index.php/Niflib/Compile">Compiling Niflib</a>. -\section include Including the Library +\section include_lib Including the Library Visual Studio 2005 is the preferred compiler for Niflib as this is the platform that all development is done on. The instructions in this guide assume that you are using this compiler. If you do not have a copy, you can <a href="http://msdn.microsoft.com/vstudio/express/downloads/default.aspx">download Microsoft Visual C++ 2005 Express</a> for free from Microsoft. Niflib should work on other compilers, and is tested on GCC from time to time, but you will have to figure out how to use those compilers on your own. @@ -270,24 +270,34 @@ Dynamic linking means that your program will include a Niflib DLL file which the These are the project settings that you should change to use each combination of Debug/Release and DLL/Static. This assumes that you've already created a default empty project with Debug and Release configurations, and are altering those with these additional settings. It also assumes that you're using the provided Niflib project file to build Niflib, and have added Niflib's lib and include folders to the proper paths in the Tools > Options screen under Projects and Solutions > VC++ Directories. -DLL Release: +\subsection dll_release DLL Release: + Configuration Properties > C/C++ > Code Generation = Multi-threaded DLL (/MD) + Configuration Properties > Linker > Additional Dependencies = niflib_dll.lib -DLL Debug: +\subsection dll_debug DLL Debug: + Configuration Properties > C/C++ > Code Generation = Multi-threaded Debug DLL (/MDd) + Configuration Properties > Linker > Additional Dependencies = niflib_dll_debug.lib -Static Release: +\subsection static_release Static Release: + Configuration Properties > C/C++ > Code Generation = Multi-threaded (/MT) -Configuration Properties > Preprocessor > Preprocessor Definitions: (Add this to the end of what is already there, separated by semicolons) NIFLIB_STATIC_LINK + Configuration Properties > Linker > Additional Dependencies = niflib_static.lib -Static Debug: -Configuration Properties > C/C++ > Code Generation = Multi-threaded Debug (/MTd) Configuration Properties > Preprocessor > Preprocessor Definitions: (Add this to the end of what is already there, separated by semicolons) NIFLIB_STATIC_LINK + +\subsection static_debug Static Debug: + +Configuration Properties > C/C++ > Code Generation = Multi-threaded Debug (/MTd) + Configuration Properties > Linker > Additional Dependencies = niflib_static_debug.lib +Configuration Properties > Preprocessor > Preprocessor Definitions: (Add this to the end of what is already there, separated by semicolons) NIFLIB_STATIC_LINK + With that out of the way, you can start writing your source code and include the main Niflib header file: \code @@ -302,7 +312,7 @@ In addition to the main header file, there are also separate headers for each ob You will have one such line in your source code for each NIF object that your program needs access to. -Niflib also wraps all its functions in the "Niflib" namespace. So, depending on your needs, you can either gain access to all Niflib symbols with a using directive that follows the #include statements like this: +Niflib also wraps all its functions in the "Niflib" namespace. So, depending on your needs, you can either gain access to all Niflib symbols with a using directive that follows the include statements like this: \code using namespace Niflib; diff --git a/include/obj/NiAVObject.h b/include/obj/NiAVObject.h index 122f1023..f05ce23c 100644 --- a/include/obj/NiAVObject.h +++ b/include/obj/NiAVObject.h @@ -143,7 +143,7 @@ public: /*! * Retrieves the property that matches the specified type, if there is one. A valid object should not have more than one property of the same type. Properties specify various charactaristics of the object that affect rendering. They may be shared among objects. - * \param[in] compare-to The type constant of the desired property type. + * \param[in] compare_to The type constant of the desired property type. * \return The property that matches the specified type, or NULL if there isn't a match. * \sa NiObject::TypeConst */ @@ -217,7 +217,7 @@ public: /*! * Sets the current visibility of this object by altering its flag data. - * \param[in] Whether or not the object will now be visible. True if visible, false otherwise. + * \param[in] n Whether or not the object will now be visible. True if visible, false otherwise. */ NIFLIB_API void SetVisibility( bool n ); diff --git a/include/obj/NiLODNode.h b/include/obj/NiLODNode.h index 7eacdf22..4de02e21 100644 --- a/include/obj/NiLODNode.h +++ b/include/obj/NiLODNode.h @@ -97,7 +97,7 @@ public: /*! * Set the data object that refers to LOD level information. - * \param[in] The new LOD level data object or NULL to clear the current one. + * \param[in] value The new LOD level data object or NULL to clear the current one. */ NIFLIB_API void SetLODLevelData( Ref<NiLODData > value ); diff --git a/include/obj/NiNode.h b/include/obj/NiNode.h index 0e2ad06d..5ea1287a 100644 --- a/include/obj/NiNode.h +++ b/include/obj/NiNode.h @@ -85,7 +85,7 @@ public: /*! * Retrieves all AV Object children from this node. These are a sub-leafs in the scene graph contained in a NIF file. Each AV Object can only be the child of one node. - * \param[in] A list of all the AV Objects that are children of this node in the scene graph. + * \return A list of all the AV Objects that are children of this node in the scene graph. */ NIFLIB_API vector< Ref<NiAVObject> > GetChildren() const; diff --git a/include/obj/NiTextureEffect.h b/include/obj/NiTextureEffect.h index 304c92aa..e152207a 100644 --- a/include/obj/NiTextureEffect.h +++ b/include/obj/NiTextureEffect.h @@ -191,7 +191,7 @@ public: /*! * Sets a Playstation 2 - specific value. Can just be left at the default of 0. - * \param[in] The new PS2 L value. + * \param[in] value The new PS2 L value. */ NIFLIB_API void SetPs2L( unsigned short value ); @@ -203,7 +203,7 @@ public: /*! * Sets a Playstation 2 - specific value. Can just be left at the default of 0xFFB5. - * \param[in] The new PS2 K value. + * \param[in] value The new PS2 K value. */ NIFLIB_API void SetPs2K( unsigned short value ); diff --git a/include/obj/bhkBoxShape.h b/include/obj/bhkBoxShape.h index 5ab24615..9a7a2474 100644 --- a/include/obj/bhkBoxShape.h +++ b/include/obj/bhkBoxShape.h @@ -65,7 +65,7 @@ public: /*! * Sets the dimentions of the box. - * \param The new dimentions for the bounding box. + * \param value The new dimentions for the bounding box. */ NIFLIB_API void SetDimensions( const Vector3 & value ); diff --git a/include/obj/bhkCapsuleShape.h b/include/obj/bhkCapsuleShape.h index 75ccd4c4..d6dbdb4b 100644 --- a/include/obj/bhkCapsuleShape.h +++ b/include/obj/bhkCapsuleShape.h @@ -89,7 +89,7 @@ public: /*! * Sets the second capsule radius. Seems to match the first capsule radius. - * \param value[in] The new second capsule radius. + * \param[in] value The new second capsule radius. */ NIFLIB_API void SetRadius1( float value ); @@ -113,7 +113,7 @@ public: /*! * Sets the third capsule radius. Seems to match the second capsule radius. - * \param value[in] The new third capsule radius. + * \param[in] value The new third capsule radius. */ NIFLIB_API void SetRadius2( float value ); diff --git a/include/obj/bhkNiTriStripsShape.h b/include/obj/bhkNiTriStripsShape.h index 93a5ddc2..b0dd385e 100644 --- a/include/obj/bhkNiTriStripsShape.h +++ b/include/obj/bhkNiTriStripsShape.h @@ -77,9 +77,9 @@ public: /*! * Sets the number of NiTriStripsData objects referenced by this shape. - * \param[in] n The new number of NiTriStripsData objects. + * \param[in] i The new number of NiTriStripsData objects. */ - NIFLIB_API void SetNumStripsData(int i); + NIFLIB_API void SetNumStripsData( int i ); /*! * Sets the NiTriStripsData object referenced by this shape at the specified index. diff --git a/include/obj/bhkWorldObject.h b/include/obj/bhkWorldObject.h index 54b7383b..cfdfe31e 100644 --- a/include/obj/bhkWorldObject.h +++ b/include/obj/bhkWorldObject.h @@ -64,7 +64,7 @@ public: /*! * Retrieves the shape object that this body is using. - * \param[in] value The shape object being used by this body. + * \return The shape object being used by this body. */ NIFLIB_API Ref<bhkShape > GetShape() const; -- GitLab