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 
6 namespace sauce {
7 using std::auto_ptr;
8 using std::shared_ptr;
9 using std::weak_ptr;
10 using std::static_pointer_cast;
11 }
12 
13 #endif // SAUCE_INTERNAL_MEMORY_STD_H_
Definition: binder.h:21