Make TUI borders respect "set style enabled"
[deliverable/binutils-gdb.git] / gdb / tracefile.h
index 47f8bee8f276da9b3eab01cd1c9fc56184869507..9c7fdea72970b386bdaaafb387aa411d58bd1c4b 100644 (file)
@@ -3,6 +3,7 @@
 
 #include "tracepoint.h"
 #include "target.h"
+#include "process-stratum-target.h"
 
 struct trace_file_writer;
 
@@ -116,16 +117,17 @@ extern struct trace_file_writer *tfile_trace_file_writer_new (void);
 
 /* Base class for tracefile related targets.  */
 
-class tracefile_target : public target_ops
+class tracefile_target : public process_stratum_target
 {
 public:
-  tracefile_target ();
+  tracefile_target () = default;
 
   int get_trace_status (trace_status *ts) override;
   bool has_all_memory () override;
   bool has_memory () override;
   bool has_stack () override;
   bool has_registers () override;
+  bool has_execution (inferior *inf) override { return false; }
   bool thread_alive (ptid_t ptid) override;
 };
 
This page took 0.023981 seconds and 4 git commands to generate.