Sauce-0.10.1
A C++ Dependency Injection Framework
scopes.h
1 #ifndef SAUCE_SCOPES_H_
2 #define SAUCE_SCOPES_H_
3 
4 namespace sauce {
5 
11 class NoScope {};
12 
21 class SingletonScope {};
22 
28 class SessionScope {};
29 
35 class RequestScope {};
36 
37 }
38 
39 #endif // SAUCE_SCOPES_H_