aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/animal_store.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound/animal_store.rs')
-rw-r--r--examples/unbound/animal_store.rs34
1 files changed, 0 insertions, 34 deletions
diff --git a/examples/unbound/animal_store.rs b/examples/unbound/animal_store.rs
deleted file mode 100644
index b2127e4..0000000
--- a/examples/unbound/animal_store.rs
+++ /dev/null
@@ -1,34 +0,0 @@
-use syrette::injectable;
-use syrette::ptr::{SingletonPtr, TransientPtr};
-
-use crate::interfaces::animal_store::IAnimalStore;
-use crate::interfaces::cat::ICat;
-use crate::interfaces::dog::IDog;
-
-pub struct AnimalStore
-{
- dog: SingletonPtr<dyn IDog>,
- cat: TransientPtr<dyn ICat>,
-}
-
-#[injectable]
-impl AnimalStore
-{
- fn new(dog: SingletonPtr<dyn IDog>, cat: TransientPtr<dyn ICat>) -> Self
- {
- Self { dog, cat }
- }
-}
-
-impl IAnimalStore for AnimalStore
-{
- fn get_dog(&self) -> SingletonPtr<dyn IDog>
- {
- self.dog.clone()
- }
-
- fn get_cat(&self) -> &TransientPtr<dyn ICat>
- {
- &self.cat
- }
-}