Add newline at end of files to reduce gcc warnings
This commit is contained in:
21
include/VolumeSerializer.h
Normal file
21
include/VolumeSerializer.h
Normal 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
|
Reference in New Issue
Block a user