aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/animals/human.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-08-17 22:04:17 +0200
committerHampusM <hampus@hampusmat.com>2023-08-17 22:04:17 +0200
commit8aeb7ad439b67228a0abc46b259967e8c91f8a97 (patch)
treed7758a573c0bc805b0fe42cdd18df628109c5ffd /examples/unbound/animals/human.rs
parent800e164a83388aa5ca7675f8031b0f0d7c6b6051 (diff)
docs: remove the 'unbound' example
This was not at all a useful example
Diffstat (limited to 'examples/unbound/animals/human.rs')
-rw-r--r--examples/unbound/animals/human.rs37
1 files changed, 0 insertions, 37 deletions
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();
- }
-}