ifw-ccf 6.0.0
 
Loading...
Searching...
No Matches
execAdptBase.hpp
Go to the documentation of this file.
1
6
7#ifndef CCF_COMMON_EXEC_ADPT_BASE_HPP_H_
8#define CCF_COMMON_EXEC_ADPT_BASE_HPP_H_
9
10#include <ifw/core/utils/param/parameter.hpp>
11
13
14
15namespace ifw::ccf::common {
16
18 class ExecAdptBase: public Base {
19 public:
20
22 virtual ~ExecAdptBase();
23
25 virtual std::string Logic(const std::string& method,
26 const std::string& parameters);
27
29 virtual std::string UserLogic(const std::string& method,
30 const std::string& parameters);
31
32 protected:
33
34 private:
35
36 };
37
38}
39
40#endif // CCF_COMMON_EXEC_ADPT_BASE_HPP_H_
Base()
Definition base.cpp:121
ExecAdptBase()
Definition execAdptBase.cpp:21
virtual std::string Logic(const std::string &method, const std::string &parameters)
Execute the user provided logic.
Definition execAdptBase.cpp:30
virtual ~ExecAdptBase()
Definition execAdptBase.cpp:26
virtual std::string UserLogic(const std::string &method, const std::string &parameters)
User provided business logic.
Definition execAdptBase.cpp:40
Definition appBase.cpp:10