Add newline at end of files to reduce gcc warnings

This commit is contained in:
Matt Williams
2007-08-29 22:54:52 +00:00
parent eaf17afc10
commit 579aefab58
16 changed files with 450 additions and 7 deletions

View File

@ -0,0 +1,21 @@
#ifndef __VOLUMESERIALIZER_H__
#define __VOLUMESERIALIZER_H__
#include <OgreSerializer.h>
namespace Ogre
{
class Volume; // forward declaration
class VolumeSerializer : public Ogre::Serializer
{
public:
VolumeSerializer ();
virtual ~VolumeSerializer ();
//void exportVolume (const Volume *pText, const Ogre::String &fileName);
void importVolume (Ogre::DataStreamPtr &stream, Volume *pDest);
};
}
#endif