Fawkes API Fawkes Development Version
clips_pddl_parser_thread.h
1/***************************************************************************
2 * clips_pddl_parser_thead.h - CLIPS feature for parsing PDDL domains
3 *
4 * Created: Fri 16 Feb 2018 17:51:39 CET 17:51
5 * Copyright 2018 Till Hofmann <hofmann@kbsg.rwth-aachen.de>
6 ****************************************************************************/
7
8/* This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Library General Public License for more details.
17 *
18 * Read the full text in the LICENSE.GPL file in the doc directory.
19 */
20
21#ifndef _PLUGINS_CLIPS_PDDL_PARSER_THEAD_H_
22#define _PLUGINS_CLIPS_PDDL_PARSER_THEAD_H_
23
24#include <aspect/logging.h>
25#include <core/threading/thread.h>
26#include <plugins/clips/aspect/clips_feature.h>
27
31{
32public:
34 void init();
35 //virtual ~ClipsPddlParserThread();
36};
37#endif /* !PLUGINS_CLIPS_PDDL_PARSER_THEAD_H__ */
Plugin thread that provides the pddl-parser CLIPS features.
void init()
Initialize the thread.
Thread aspect to provide a feature to CLIPS environments.
Definition: clips_feature.h:58
Thread aspect to log output.
Definition: logging.h:33
Thread class encapsulation of pthreads.
Definition: thread.h:46