summaryrefslogtreecommitdiff
path: root/docs/tutorials/018/token.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorials/018/token.cpp')
-rw-r--r--docs/tutorials/018/token.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/docs/tutorials/018/token.cpp b/docs/tutorials/018/token.cpp
deleted file mode 100644
index 995b127014f..00000000000
--- a/docs/tutorials/018/token.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-
-// $Id$
-
-// Get our two Test derivatives...
-#include "Token_i.h"
-#include "Mutex_i.h"
-
-int main(int,char**)
-{
- // See what an ACE_Token does for us.
- Token token;
- token.run();
-
- // And now and ACE_Mutex.
- Mutex mutex;
- mutex.run();
-
- return(0);
-}