]> git.eshelyaron.com Git - emacs.git/commitdiff
Test files contributed by Barry OReilly
authorEric Ludlam <zappo@gnu.org>
Thu, 2 Jan 2014 01:44:55 +0000 (20:44 -0500)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 15:55:35 +0000 (17:55 +0200)
These test files contributed by Barry OReilly, modified for use in the
automated tests for CEDET, and with additional comments.  inc/Util.hh,
src/Util.cc: Search symbol both in and outside of namespaces.

test/manual/cedet/integ_src/globalref/inc/Manager.hh [new file with mode: 0644]

diff --git a/test/manual/cedet/integ_src/globalref/inc/Manager.hh b/test/manual/cedet/integ_src/globalref/inc/Manager.hh
new file mode 100644 (file)
index 0000000..4d23d40
--- /dev/null
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "Util.h"
+
+//
+// This files shows use of the namespaces in Util.hh but with diff symbols.
+//
+namespace play { namespace prod {
+class Manager {
+   public:
+   explicit Manager(const int);
+};
+}}