aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/interfaces/animal_store.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound/interfaces/animal_store.rs')
-rw-r--r--examples/unbound/interfaces/animal_store.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/unbound/interfaces/animal_store.rs b/examples/unbound/interfaces/animal_store.rs
new file mode 100644
index 0000000..dc8a4c3
--- /dev/null
+++ b/examples/unbound/interfaces/animal_store.rs
@@ -0,0 +1,11 @@
+use syrette::ptr::{SingletonPtr, TransientPtr};
+
+use crate::interfaces::cat::ICat;
+use crate::interfaces::dog::IDog;
+
+pub trait IAnimalStore
+{
+ fn get_dog(&self) -> SingletonPtr<dyn IDog>;
+
+ fn get_cat(&self) -> &TransientPtr<dyn ICat>;
+}