clang-tidy: add a subset of cppcoreguidelines and other style checks
[lttng-tools.git] / src / bin / lttng-sessiond / stream-class.hpp
index 754b723fa5eec49f316089ab8d0c4c13288f6045..d80ad2e0b0b036773762edfd766b11effd78b6cf 100644 (file)
@@ -30,6 +30,10 @@ public:
         */
        void accept(trace_class_visitor& visitor) const;
        virtual ~stream_class() = default;
+       stream_class(const stream_class&) = delete;
+       stream_class(stream_class&&) = delete;
+       stream_class& operator=(stream_class&&) = delete;
+       stream_class& operator=(const stream_class&) = delete;
 
        virtual const type* packet_context() const;
        virtual const type* event_header() const;
This page took 0.022778 seconds and 4 git commands to generate.