blob: 56acb1dfb511f6fd5d6342c55b9de0f23687e431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "PolySetEvaluator.h"
#include "printutils.h"
#include "polyset.h"
PolySetEvaluator *PolySetEvaluator::global_evaluator = NULL;
PolySetEvaluator::cache_entry::cache_entry(PolySet *ps) :
ps(ps), msg(print_messages_stack.last())
{
}
PolySetEvaluator::cache_entry::~cache_entry()
{
ps->unlink();
}
|