~ubuntu-branches/ubuntu/gutsy/kid3/gutsy

« back to all changes in this revision

Viewing changes to kid3/dirlist.h

  • Committer: Bazaar Package Importer
  • Author(s): Sarah Hobbs
  • Date: 2006-07-14 12:25:16 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060714122516-p2wk0iyzumu6jx42
Tags: 0.7-1ubuntu1
Merge from debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
         */
44
44
        QString getDirname(void) const { return m_dirname; }
45
45
 
 
46
        /**
 
47
         * Set name of entry to select in next call to readDir().
 
48
         *
 
49
         * @param str name of entry to select
 
50
         */
 
51
        void setEntryToSelect(const QString& str) { m_entryToSelect = str; }
 
52
 
46
53
private:
47
54
        /** path of directory */
48
55
        QString m_dirname;
 
56
        /** entry to select in readDir() */
 
57
        QString m_entryToSelect;
49
58
};
50
59
 
51
60
#endif // DIRLIST_H