17 lines
376 B
C++
17 lines
376 B
C++
#ifndef _MSC_VER
|
|
#define _EXPAND_BLOCK_TEMPLATES_
|
|
#define _EXPAND_VECTOR_TEMPLATES_
|
|
#include <common/string.hpp>
|
|
#include <common/block.hpp>
|
|
#include <common/block.tpp>
|
|
#include <common/pvector.hpp>
|
|
#include <common/pvector.tpp>
|
|
#include <bsptree/btree.hpp>
|
|
#include <bsptree/btree.tpp>
|
|
|
|
typedef Block<String> a;
|
|
typedef PureVector<String> b;
|
|
typedef BTree<String> c;
|
|
|
|
#endif
|