~ubuntu-branches/ubuntu/vivid/fbreader/vivid-proposed

« back to all changes in this revision

Viewing changes to fbreader/src/formats/html/StyleSheetTable.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2007-12-04 12:51:45 UTC
  • Revision ID: james.westby@ubuntu.com-20071204125145-pw20qfyn0fx3h7jg
Tags: 0.8.8-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        }
29
29
}
30
30
 
31
 
#include <iostream>
 
31
//#include <iostream>
32
32
 
33
33
void StyleSheetTable::dump() const {
 
34
/*
34
35
        for (std::map<Key,AttributeMap>::const_iterator it = myMap.begin(); it != myMap.end(); ++it) {
35
36
                std::cerr << it->first.TagName << " . " << it->first.ClassName << "\n";
36
37
                for (AttributeMap::const_iterator jt = it->second.begin(); jt != it->second.end(); ++jt) {
41
42
                        std::cerr << "\n";
42
43
                }
43
44
        }
 
45
*/
44
46
}