blob: 5dc0ae0668fe68f7162c9c0f7c05f826b79f029b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef DXFDIM_H_
#define DXFDIM_H_
//#include <boost/unordered_map.hpp>
#include <map>
#include "value.h"
//extern boost::unordered_map<std::string,Value> dxf_dim_cache;
//extern boost::unordered_map<std::string,Value> dxf_cross_cache;
extern std::map<std::string,Value> dxf_dim_cache;
extern std::map<std::string,Value> dxf_cross_cache;
#endif
|