00001 00002 #ifndef __SKYPE_FILENAME_LIST_H 00003 #define __SKYPE_FILENAME_LIST_H 00004 00005 #include "skype-string-list.h" 00006 #include "skype-filename.h" 00007 00008 /*! \class SEFilenameList skype-filename-list.h "skype-filename-list.h" 00009 * \brief SEFilenameList Represents string list with file names in it. 00010 */ 00011 class SEFilenameList : public SEStringList 00012 { 00013 public: 00014 SEFilenameList() : SEStringList() {} 00015 SEFilenameList(const SEFilenameList& fl) : SEStringList(fl) {} 00016 SEFilenameList(const SEStringList& sl) : SEStringList(sl) {} 00017 00018 ~SEFilenameList() {} 00019 00020 /** Returns a string reference specified by its index. */ 00021 const SEFilename &operator[](size_t n) const { 00022 return (const SEFilename &) SEStringList::operator[](n); 00023 } 00024 00025 }; 00026 00027 #endif
(c) Skype Technologies S.A. Confidential/Proprietary
Last updated: Fri Mar 16 2012