/******************************************************* Lightwave Object Loader for OSG Copyright (C) 2004 Marco Jez OpenSceneGraph is (C) 2004 Robert Osfield ********************************************************/ #ifndef LWOSG_CLIP_ #define LWOSG_CLIP_ #include "lwo2chunks.h" #include #include namespace lwosg { class Clip { public: Clip(const lwo2::FORM::CLIP *clip = 0); void compile(const lwo2::FORM::CLIP *clip); inline const std::string &get_still_filename() const { return still_filename_; } private: std::string still_filename_; }; typedef std::map Clip_map; } #endif