forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cpptemplate_delegate.hpp
45 lines (36 loc) · 1.2 KB
/
cpptemplate_delegate.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @file
*
* @brief Delegate definitions for the `cpptemplate` plugin
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
#ifndef ELEKTRA_CPP_TEMPLATE_DELEGATE_HPP
#define ELEKTRA_CPP_TEMPLATE_DELEGATE_HPP
#include <kdberrors.h>
#include <kdbplugin.hpp>
namespace elektra
{
class CppTemplateDelegate
{
using KeySet = kdb::KeySet;
using Key = kdb::Key;
/** This key set stores the plugin configuration. */
KeySet configuration; // For your own plugin you can remove this value and also add any other member you like here.
public:
explicit CppTemplateDelegate (KeySet config);
/**
* @brief This method returns the configuration of the plugin, prefixing key names with the name of `parent`.
*
* This is only an example to show you how to use the delegate. You can add any method you want here and then call it in
* `cpptemplate.cpp` via `delegator::get (handle)->functionName(parameter1, parameter2, …)`.
*
* @param parent This key specifies the name this function adds to the stored configuration values.
*
* @return A key set storing the configuration values of the plugin
*/
KeySet getConfig (Key const & prefix);
};
} // end namespace elektra
#endif