diff options
Diffstat (limited to 'examples/unbound/animals')
-rw-r--r-- | examples/unbound/animals/cat.rs | 22 | ||||
-rw-r--r-- | examples/unbound/animals/dog.rs | 22 | ||||
-rw-r--r-- | examples/unbound/animals/human.rs | 37 | ||||
-rw-r--r-- | examples/unbound/animals/mod.rs | 3 |
4 files changed, 0 insertions, 84 deletions
diff --git a/examples/unbound/animals/cat.rs b/examples/unbound/animals/cat.rs deleted file mode 100644 index 153ad4b..0000000 --- a/examples/unbound/animals/cat.rs +++ /dev/null @@ -1,22 +0,0 @@ -use syrette::injectable; - -use crate::interfaces::cat::ICat; - -pub struct Cat {} - -#[injectable(ICat)] -impl Cat -{ - pub fn new() -> Self - { - Self {} - } -} - -impl ICat for Cat -{ - fn meow(&self) - { - println!("Meow!"); - } -} diff --git a/examples/unbound/animals/dog.rs b/examples/unbound/animals/dog.rs deleted file mode 100644 index 84959c0..0000000 --- a/examples/unbound/animals/dog.rs +++ /dev/null @@ -1,22 +0,0 @@ -use syrette::injectable; - -use crate::interfaces::dog::IDog; - -pub struct Dog {} - -#[injectable(IDog)] -impl Dog -{ - pub fn new() -> Self - { - Self {} - } -} - -impl IDog for Dog -{ - fn woof(&self) - { - println!("Woof!"); - } -} diff --git a/examples/unbound/animals/human.rs b/examples/unbound/animals/human.rs deleted file mode 100644 index 56764d3..0000000 --- a/examples/unbound/animals/human.rs +++ /dev/null @@ -1,37 +0,0 @@ -use syrette::injectable; -use syrette::ptr::TransientPtr; - -use crate::interfaces::animal_store::IAnimalStore; -use crate::interfaces::human::IHuman; - -pub struct Human -{ - animal_store: TransientPtr<dyn IAnimalStore>, -} - -#[injectable(IHuman)] -impl Human -{ - pub fn new(animal_store: TransientPtr<dyn IAnimalStore>) -> Self - { - Self { animal_store } - } -} - -impl IHuman for Human -{ - fn make_pets_make_sounds(&self) - { - let dog = self.animal_store.get_dog(); - - println!("Hi doggy!"); - - dog.woof(); - - let cat = self.animal_store.get_cat(); - - println!("Hi kitty!"); - - cat.meow(); - } -} diff --git a/examples/unbound/animals/mod.rs b/examples/unbound/animals/mod.rs deleted file mode 100644 index 5444978..0000000 --- a/examples/unbound/animals/mod.rs +++ /dev/null @@ -1,3 +0,0 @@ -pub mod cat; -pub mod dog; -pub mod human; |