summaryrefslogtreecommitdiff
path: root/dnn/test.cc
diff options
context:
space:
mode:
authorchatty1994-03-14 08:40:16 +0000
committerchatty1994-03-14 08:40:16 +0000
commit33c173febd67cf6b558eb86ba552dc9369ab4b24 (patch)
tree0af984e138144b6ff9d8ec98b0ea7245dd003bef /dnn/test.cc
parent1ed65383fc2b49e22929862dd5705c93f79a60c2 (diff)
downloadivy-league-33c173febd67cf6b558eb86ba552dc9369ab4b24.zip
ivy-league-33c173febd67cf6b558eb86ba552dc9369ab4b24.tar.gz
ivy-league-33c173febd67cf6b558eb86ba552dc9369ab4b24.tar.bz2
ivy-league-33c173febd67cf6b558eb86ba552dc9369ab4b24.tar.xz
Initial revision
Diffstat (limited to 'dnn/test.cc')
-rw-r--r--dnn/test.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/dnn/test.cc b/dnn/test.cc
new file mode 100644
index 0000000..e4c1b25
--- /dev/null
+++ b/dnn/test.cc
@@ -0,0 +1,12 @@
+#include "dnn.h"
+
+class A {
+public:
+ void foo (DnnEvent&);
+};
+
+main ()
+{
+ A a;
+ DnnReactionOf <A> r (a, &A::foo);
+}