kDB: Knowledge DataBase
Loading...
Searching...
No Matches
Action.h
1#pragma once
2
3#include <kDB/Forward.h>
4
5namespace kDB::Repository::krQuery::Interfaces
6{
15 class Action
16 {
17 public:
18 virtual ~Action();
22 virtual cres_qresult<knowCore::Value> execute(const Context& _context, const QString& _key,
23 const knowCore::ValueHash& _parameters)
24 = 0;
25 };
26} // namespace kDB::Repository::krQuery::Interfaces
Definition Context.h:8
virtual cres_qresult< knowCore::Value > execute(const Context &_context, const QString &_key, const knowCore::ValueHash &_parameters)=0
Definition ValueHash.h:13