summaryrefslogtreecommitdiff
path: root/elpa/irony-20220110.849/server/src/support/NonCopyable.h
diff options
context:
space:
mode:
Diffstat (limited to 'elpa/irony-20220110.849/server/src/support/NonCopyable.h')
-rw-r--r--elpa/irony-20220110.849/server/src/support/NonCopyable.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/elpa/irony-20220110.849/server/src/support/NonCopyable.h b/elpa/irony-20220110.849/server/src/support/NonCopyable.h
deleted file mode 100644
index d30a5b2..0000000
--- a/elpa/irony-20220110.849/server/src/support/NonCopyable.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/**-*-C++-*-
- * \file
- * \author Guillaume Papin <guillaume.papin@epitech.eu>
- *
- * \brief NonCopyable class like in Boost.
- *
- * \see http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Non-copyable_Mixin
- *
- * This file is distributed under the GNU General Public License. See
- * COPYING for details.
- */
-
-#ifndef IRONY_MODE_SERVER_SUPPORT_NONCOPYABLE_H_
-#define IRONY_MODE_SERVER_SUPPORT_NONCOPYABLE_H_
-
-namespace util {
-
-class NonCopyable {
-protected:
- NonCopyable() {
- }
-
- // Protected non-virtual destructor
- ~NonCopyable() {
- }
-
-private:
- NonCopyable(const NonCopyable &);
- NonCopyable &operator=(const NonCopyable &);
-};
-
-} // ! namespace util
-
-#endif /* !IRONY_MODE_SERVER_SUPPORT_NONCOPYABLE_H_ */