Skip to content
Snippets Groups Projects
Unverified Commit a9cfa782 authored by Leon Dietrich's avatar Leon Dietrich
Browse files

fix: indirect adddressing resulting in warning

parent 5cbd0898
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -10,6 +10,7 @@ namespace rmrf::ui { ...@@ -10,6 +10,7 @@ namespace rmrf::ui {
*/ */
class progress_indicator { class progress_indicator {
public: public:
virtual ~progress_indicator();
/** /**
* Query the progress state * Query the progress state
* @return The current progress in percent * @return The current progress in percent
...@@ -29,12 +30,12 @@ public: ...@@ -29,12 +30,12 @@ public:
* This method shall be used in order to obtain the * This method shall be used in order to obtain the
* description of the total operation. * description of the total operation.
*/ */
virtual shared_ptr<string> get_operation_description(); virtual std::shared_ptr<std::string> get_operation_description();
/** /**
* This method shall be used in order to retrieve a * This method shall be used in order to retrieve a
* description of the current step. * description of the current step.
*/ */
virtual shared_ptr<string> get_current_job_description(); virtual std::shared_ptr<std::string> get_current_job_description();
}; };
} }
...@@ -43,6 +43,7 @@ public: ...@@ -43,6 +43,7 @@ public:
class view { class view {
public: public:
virtual void set_progress_indicator(std::shared_ptr<progress_indicator>); virtual void set_progress_indicator(std::shared_ptr<progress_indicator>);
virtual ~view();
}; };
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment