Changeset 10992 for code/branches/cpp11_v2/src/libraries/core/command
- Timestamp:
- Dec 29, 2015, 5:16:28 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/libraries/core/command
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/command/CommandExecutor.h
r10990 r10992 133 133 private: 134 134 CommandExecutor() = default; ///< Empty constructor 135 CommandExecutor(const CommandExecutor&) = delete; ///< Not implemented copy-constructor136 135 ~CommandExecutor() = default; ///< Empty destructor 136 137 // non-copyable: 138 CommandExecutor(const CommandExecutor&) = delete; 139 CommandExecutor& operator=(const CommandExecutor&) = delete; 137 140 138 141 static CommandExecutor& getInstance(); -
code/branches/cpp11_v2/src/libraries/core/command/IRC.h
r10990 r10992 65 65 66 66 IRC(); 67 ~IRC() = default; 68 69 // non-copyable: 67 70 IRC(const IRC&) = delete; 68 ~IRC() = default;71 IRC& operator=(const IRC&) = delete; 69 72 70 73 Tcl::interpreter* interpreter_; ///< The Tcl interpreter that is used for the IRC connection -
code/branches/cpp11_v2/src/libraries/core/command/Shell.h
r10990 r10992 149 149 150 150 private: 151 // non-copyable: 151 152 Shell(const Shell&) = delete; 153 Shell& operator=(const Shell&) = delete; 152 154 153 155 // DevModeListener -
code/branches/cpp11_v2/src/libraries/core/command/TclBind.h
r10990 r10992 124 124 125 125 private: 126 // non-copyable: 126 127 TclBind(const TclBind&) = delete; 128 TclBind& operator=(const TclBind&) = delete; 127 129 128 130 static std::string tcl_helper(Tcl::object const &args, bool bQuery);
Note: See TracChangeset
for help on using the changeset viewer.