~ubuntu-branches/ubuntu/wily/libwpd/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/WPXPropertyList.cpp

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2013-05-14 11:01:45 UTC
  • mfrom: (1.5.4)
  • Revision ID: package-import@ubuntu.com-20130514110145-8g97krfs7eoqyuwl
Tags: 0.9.8-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 * Corel Corporation or Corel Corporation Limited."
26
26
 */
27
27
 
28
 
#include "WPXPropertyList.h"
 
28
#include <libwpd/libwpd.h>
29
29
#include <map>
30
30
#include <string>
31
31
#include <utility>
206
206
        const char *key();
207
207
 
208
208
private:
 
209
        // not implemented
 
210
        WPXMapIterImpl(const WPXMapIterImpl &other);
 
211
        WPXMapIterImpl &operator=(const WPXMapIterImpl &other);
 
212
 
 
213
private:
209
214
        bool m_imaginaryFirst;
210
215
        std::map<std::string, WPXProperty *>::iterator m_iter;
211
216
        std::map<std::string, WPXProperty *> *m_map;