summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/element/respond/RespondElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/element/respond/RespondElement.h')
-rw-r--r--src/uscxml/plugins/element/respond/RespondElement.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/uscxml/plugins/element/respond/RespondElement.h b/src/uscxml/plugins/element/respond/RespondElement.h
deleted file mode 100644
index 2e8cec7..0000000
--- a/src/uscxml/plugins/element/respond/RespondElement.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/**
- * @file
- * @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
- * @copyright Simplified BSD
- *
- * @cond
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the FreeBSD license as published by the FreeBSD
- * project.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * You should have received a copy of the FreeBSD license along with this
- * program. If not, see <http://www.opensource.org/licenses/bsd-license>.
- * @endcond
- */
-
-#ifndef RESPONDELEMENT_H_I11KQ39Q
-#define RESPONDELEMENT_H_I11KQ39Q
-
-#include <uscxml/Interpreter.h>
-
-#ifdef BUILD_AS_PLUGINS
-#include "uscxml/plugins/Plugins.h"
-#endif
-
-namespace uscxml {
-
-class RespondElement : public ExecutableContentImpl {
-public:
- RespondElement() {}
- virtual ~RespondElement() {}
- boost::shared_ptr<ExecutableContentImpl> create(InterpreterImpl* interpreter);
-
- std::string getLocalName() {
- return "respond";
- }
-
- std::string getNamespace() {
- return "http://www.w3.org/2005/07/scxml";
- }
-
- bool processChildren() {
- return false;
- }
-
- void enterElement(const Arabica::DOM::Element<std::string>& node);
- void exitElement(const Arabica::DOM::Element<std::string>& node);
-
-};
-
-#ifdef BUILD_AS_PLUGINS
-PLUMA_INHERIT_PROVIDER(RespondElement, ExecutableContentImpl);
-#endif
-
-}
-
-
-#endif /* end of include guard: RESPONDELEMENT_H_I11KQ39Q */