From: <and...@us...> - 2008-01-11 00:08:13
|
Revision: 537 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=537&view=rev Author: andy_miller Date: 2008-01-10 16:08:11 -0800 (Thu, 10 Jan 2008) Log Message: ----------- Code gen issue with OgreAL -- needed std::string to be alaises Modified Paths: -------------- trunk/python-ogre/code_generators/ogreal/python_ogreal_aliases.h Modified: trunk/python-ogre/code_generators/ogreal/python_ogreal_aliases.h =================================================================== --- trunk/python-ogre/code_generators/ogreal/python_ogreal_aliases.h 2008-01-10 08:04:29 UTC (rev 536) +++ trunk/python-ogre/code_generators/ogreal/python_ogreal_aliases.h 2008-01-11 00:08:11 UTC (rev 537) @@ -1,8 +1,9 @@ // typedef xxxxx xxxx; +typedef std::string String; typedef std::map<std::string, std::string> MapStringString; - typedef OgreAL::SoundMap SoundMap; - typedef OgreAL::FormatMap FormatMap; - typedef OgreAL::FormatMapIterator FormatMapIterator; - typedef Ogre::Singleton<OgreAL::SoundManager> SingletonSoundManager; - typedef Ogre::Singleton<OgreAL::Listener> SingletonListener; +typedef OgreAL::SoundMap SoundMap; +typedef OgreAL::FormatMap FormatMap; +typedef OgreAL::FormatMapIterator FormatMapIterator; +typedef Ogre::Singleton<OgreAL::SoundManager> SingletonSoundManager; +typedef Ogre::Singleton<OgreAL::Listener> SingletonListener; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |