Ported QCache and related code away from Qt

stl_dim
Marius Kintel 2011-11-09 03:47:00 +01:00
parent 0c72c33e6e
commit acc0a21fe3
5 changed files with 6 additions and 9 deletions

View File

@ -2,23 +2,23 @@
bool CSGTextCache::contains(const AbstractNode &node) const
{
return this->cache.contains(this->tree.getString(node));
return this->cache.find(this->tree.getString(node)) != this->cache.end();
}
// We cannot return a reference since the [] operator returns a temporary value
string CSGTextCache::operator[](const AbstractNode &node) const
{
return this->cache[this->tree.getString(node)];
return this->cache.at(this->tree.getString(node));
}
void CSGTextCache::insert(const class AbstractNode &node, const string & value)
{
this->cache.insert(this->tree.getString(node), value);
this->cache.insert(std::make_pair(this->tree.getString(node), value));
}
void CSGTextCache::remove(const class AbstractNode &node)
{
this->cache.remove(this->tree.getString(node));
this->cache.erase(this->tree.getString(node));
}
void CSGTextCache::clear()

View File

@ -1,9 +1,9 @@
#ifndef CSGTEXTCACHE_H_
#define CSGTEXTCACHE_H_
#include "myqhash.h"
#include "Tree.h"
#include <string>
#include <boost/unordered_map.hpp>
using std::string;
@ -20,7 +20,7 @@ public:
void clear();
private:
QHash<string, string> cache;
boost::unordered_map<string, string> cache;
const Tree &tree;
};

View File

@ -24,7 +24,6 @@
*
*/
#include "myqhash.h"
#include "tests-common.h"
#include "openscad.h"
#include "node.h"

View File

@ -24,7 +24,6 @@
*
*/
#include "myqhash.h"
#include "tests-common.h"
#include "openscad.h"
#include "node.h"

View File

@ -24,7 +24,6 @@
*
*/
#include "myqhash.h"
#include "tests-common.h"
#include "PolySetEvaluator.h"
#include "CSGTermEvaluator.h"