22 #ifndef FIFE_IANIMATION_SAVER_H
23 #define FIFE_IANIMATION_SAVER_H
33 #include "util/base/sharedptr.h"
37 class IAnimationSaver {
39 virtual ~IAnimationSaver() { };
43 virtual void save(
const std::string& filename) = 0;
46 typedef SharedPtr<IAnimationSaver> AnimationSaverPtr;
credit to phoku for his NodeDisplay example which the visitor code is adapted from ( he coded the qua...