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,26 @@
#ifndef __MATERIALMAPSERIALIZER_H__
#define __MATERIALMAPSERIALIZER_H__
#include <OgreSerializer.h>
#include <OgreString.h>
#include <vector>
namespace Ogre
{
class MaterialMap; // forward declaration
class MaterialMapSerializer : public Ogre::Serializer
{
public:
MaterialMapSerializer ();
virtual ~MaterialMapSerializer ();
void importMaterialMap (Ogre::DataStreamPtr &stream, MaterialMap *pDest);
private:
void tokenize(const String& str, std::vector<String>& tokens, const String& delimiters = " ");
};
}
#endif