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_
The scope of unscoped bindings.
Definition: scopes.h:11
The Request scope.
Definition: scopes.h:35
Definition: binder.h:21
The Session scope.
Definition: scopes.h:28
The Singleton scope.
Definition: scopes.h:21