aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound/interfaces')
-rw-r--r--examples/unbound/interfaces/animal_store.rs11
-rw-r--r--examples/unbound/interfaces/cat.rs4
-rw-r--r--examples/unbound/interfaces/dog.rs4
-rw-r--r--examples/unbound/interfaces/human.rs4
-rw-r--r--examples/unbound/interfaces/mod.rs4
5 files changed, 0 insertions, 27 deletions
diff --git a/examples/unbound/interfaces/animal_store.rs b/examples/unbound/interfaces/animal_store.rs
deleted file mode 100644
index dc8a4c3..0000000
--- a/examples/unbound/interfaces/animal_store.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-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>;
-}
diff --git a/examples/unbound/interfaces/cat.rs b/examples/unbound/interfaces/cat.rs
deleted file mode 100644
index 8650802..0000000
--- a/examples/unbound/interfaces/cat.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-pub trait ICat
-{
- fn meow(&self);
-}
diff --git a/examples/unbound/interfaces/dog.rs b/examples/unbound/interfaces/dog.rs
deleted file mode 100644
index 4211c27..0000000
--- a/examples/unbound/interfaces/dog.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-pub trait IDog
-{
- fn woof(&self);
-}
diff --git a/examples/unbound/interfaces/human.rs b/examples/unbound/interfaces/human.rs
deleted file mode 100644
index dc20194..0000000
--- a/examples/unbound/interfaces/human.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-pub trait IHuman
-{
- fn make_pets_make_sounds(&self);
-}
diff --git a/examples/unbound/interfaces/mod.rs b/examples/unbound/interfaces/mod.rs
deleted file mode 100644
index bd9f848..0000000
--- a/examples/unbound/interfaces/mod.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-pub mod animal_store;
-pub mod cat;
-pub mod dog;
-pub mod human;