// Media File // // Douglas Thrift // // $Id$ #ifndef _MediaFile_hpp_ #define _MediaFile_hpp_ #include #ifdef MENES_PRAGMA_ONCE #pragma once #endif #include struct MediaFile { ext::String name; bool operator<(const MediaFile& file) const; }; #endif//_MediaFile_hpp_