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