Sauce-0.10.1
A C++ Dependency Injection Framework
tr1.h
1#ifndef SAUCE_INTERNAL_MEMORY_TR1_H_
2#define SAUCE_INTERNAL_MEMORY_TR1_H_
3
4#include <memory>
5#include <tr1/memory>
6
7namespace sauce {
8using std::auto_ptr;
9using std::tr1::shared_ptr;
10using std::tr1::weak_ptr;
11using std::tr1::static_pointer_cast;
12}
13
14#endif // SAUCE_INTERNAL_MEMORY_TR1_H_