~osomon/pyexiv2/pyexiv2-0.3

« back to all changes in this revision

Viewing changes to src/exiv2wrapper.hpp

  • Committer: Olivier Tilloy
  • Date: 2009-04-14 07:36:26 UTC
  • Revision ID: olivier@tilloy.net-20090414073626-cv0qbcjgz75ucr1i
Really delete all repetitions of an IPTC tag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
    //void setIptcTag(std::string key, std::string value, unsigned int index);
105
105
    void setIptcTagValues(std::string key, boost::python::tuple values);
106
106
 
107
 
    // Delete the required IPTC tag.
108
 
    // If the key references a repeatable tag, the parameter index (starting
109
 
    // from 0 like a list index) is used to determine which of the
110
 
    // repetitions is to be deleted.
111
 
    // Throw an exception if the tag was not set or if the index is greater
112
 
    // than the highest existing one.
113
 
    //void deleteIptcTag(std::string key, unsigned int index);
 
107
    // Delete (all the repetitions of) the required IPTC tag.
 
108
    // Throw an exception if the tag was not set.
 
109
    void deleteIptcTag(std::string key);
114
110
 
115
111
    boost::python::list xmpKeys();
116
112