mirror of
https://github.com/openappsec/openappsec.git
synced 2025-09-30 19:47:44 +03:00
My 11th 2023 update
This commit is contained in:
28
components/include/keyword_comp.h
Normal file
28
components/include/keyword_comp.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef __KEYWORD_COMP__
|
||||
#define __KEYWORD_COMP__
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include "singleton.h"
|
||||
#include "i_environment.h"
|
||||
#include "i_table.h"
|
||||
#include "i_keywords_rule.h"
|
||||
#include "component.h"
|
||||
|
||||
class KeywordComp
|
||||
:
|
||||
public Component,
|
||||
Singleton::Provide<I_KeywordsRule>,
|
||||
Singleton::Consume<I_Table>,
|
||||
Singleton::Consume<I_Environment>
|
||||
{
|
||||
public:
|
||||
KeywordComp();
|
||||
~KeywordComp();
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
std::unique_ptr<Impl> pimpl;
|
||||
};
|
||||
|
||||
#endif // __KEYWORD_COMP__
|
Reference in New Issue
Block a user