Sauce-0.10.1
A C++ Dependency Injection Framework
scopes.h
1#ifndef SAUCE_SCOPES_H_
2#define SAUCE_SCOPES_H_
3
4namespace sauce {
5
11class NoScope {};
12
22
28class SessionScope {};
29
35class 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
The Session scope.
Definition: scopes.h:28
The Singleton scope.
Definition: scopes.h:21