summaryrefslogtreecommitdiffstats
path: root/trunk/examples/overload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/examples/overload.cpp')
-rw-r--r--trunk/examples/overload.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/trunk/examples/overload.cpp b/trunk/examples/overload.cpp
deleted file mode 100644
index 02bcced..0000000
--- a/trunk/examples/overload.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-class Test
-{
- public:
- void drawRect(int,int,int,int);
- void drawRect(const Rect &r);
-};
-
-void Test::drawRect(int x,int y,int w,int h) {}
-void Test::drawRect(const Rect &r) {}
-
-/*! \class Test
- * \brief A short description.
- *
- * More text.
- */
-
-/*! \fn void Test::drawRect(int x,int y,int w,int h)
- * This command draws a rectangle with a left upper corner at ( \a x , \a y ),
- * width \a w and height \a h.
- */
-
-/*!
- * \overload void Test::drawRect(const Rect &r)
- */
-