Skip to content
Snippets Groups Projects
Commit a1927ef4 authored by Jeremie Deray's avatar Jeremie Deray
Browse files

ProcessorParamsBase virtual destructor

parent ca0851d1
No related branches found
No related tags found
1 merge request!127Add ProcessorMotion::processIncomingCapture & Miscellaneous
...@@ -23,8 +23,11 @@ namespace wolf { ...@@ -23,8 +23,11 @@ namespace wolf {
*/ */
struct ProcessorParamsBase struct ProcessorParamsBase
{ {
std::string type; ProcessorParamsBase() = default;
std::string name; virtual ~ProcessorParamsBase() = default;
std::string type;
std::string name;
}; };
//class ProcessorBase //class ProcessorBase
......
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