summaryrefslogtreecommitdiffstats
path: root/trunk/examples/relates.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/examples/relates.cpp')
-rw-r--r--trunk/examples/relates.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/trunk/examples/relates.cpp b/trunk/examples/relates.cpp
deleted file mode 100644
index c6f7dc9..0000000
--- a/trunk/examples/relates.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*!
- * A String class.
- */
-
-class String
-{
- friend int strcmp(const String &,const String &);
-};
-
-/*!
- * Compares two strings.
- */
-
-int strcmp(const String &s1,const String &s2)
-{
-}
-
-/*! \relates String
- * A string debug function.
- */
-void stringDebug()
-{
-}