Sauce-0.10.1
A C++ Dependency Injection Framework
sauce
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_
sauce::NoScope
The scope of unscoped bindings.
Definition:
scopes.h:11
sauce::RequestScope
The Request scope.
Definition:
scopes.h:35
sauce::SessionScope
The Session scope.
Definition:
scopes.h:28
sauce::SingletonScope
The Singleton scope.
Definition:
scopes.h:21
Generated by
1.9.3