summaryrefslogtreecommitdiffstats
path: root/src/uscxml/debug/Breakpoint.h
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-05-12 13:12:33 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-05-12 13:12:33 (GMT)
commitb62e7979600feee23dc7cdb61042a8fc7673122b (patch)
treef7351372f37979dd2d048e0b68a16a4cd3b2aadb /src/uscxml/debug/Breakpoint.h
parent1b11b310be61e51b3ac5ebb83f7c8a33aef3d6e8 (diff)
downloaduscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.zip
uscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.tar.gz
uscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.tar.bz2
Major Refactoring v2.0
Diffstat (limited to 'src/uscxml/debug/Breakpoint.h')
-rw-r--r--src/uscxml/debug/Breakpoint.h95
1 files changed, 0 insertions, 95 deletions
diff --git a/src/uscxml/debug/Breakpoint.h b/src/uscxml/debug/Breakpoint.h
deleted file mode 100644
index d7df03d..0000000
--- a/src/uscxml/debug/Breakpoint.h
+++ /dev/null
@@ -1,95 +0,0 @@
-/**
- * @file
- * @author 2012-2014 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 BREAKPOINT_H_VR7K7T1X
-#define BREAKPOINT_H_VR7K7T1X
-
-#include <string> // for string
-#include "uscxml/Common.h" // for USCXML_API
-#include "uscxml/Interpreter.h"
-#include "DOM/Element.hpp" // for Element
-#include "uscxml/messages/Data.h" // for Data
-
-namespace uscxml {
-
-class USCXML_API Breakpoint {
-public:
-
- enum When {
- UNDEF_WHEN, AFTER, BEFORE, ON
- };
-
- enum Subject {
- UNDEF_SUBJECT, STATE, TRANSITION, STABLE, MICROSTEP, EVENT, INVOKER, EXECUTABLE
- };
-
- enum Action {
- UNDEF_ACTION, ENTER, EXIT, INVOKE, UNINVOKE
- };
-
- Breakpoint() {
- subject = UNDEF_SUBJECT;
- when = UNDEF_WHEN;
- action = UNDEF_ACTION;
- }
- Breakpoint(const Data& data);
-
- // would we match the given breakpoint as well?
- bool matches(Interpreter interpreter, const Breakpoint& other) const;
-
- Data toData() const;
-
- bool operator<(const Breakpoint& other) const {
- return (toData() < other.toData());
- }
-
- operator bool() {
- return (subject != UNDEF_SUBJECT ||
- when != UNDEF_WHEN ||
- action != UNDEF_ACTION);
- }
-
- mutable bool enabled;
-
- When when;
- Subject subject;
- Action action;
-
- Arabica::DOM::Element<std::string> element;
-
- std::string invokeId;
- std::string invokeType;
-
- std::string eventName;
-
- std::string executableName;
- std::string executableXPath;
-
- std::string stateId;
- std::string transSourceId;
- std::string transTargetId;
-
- std::string condition;
-};
-
-}
-
-
-
-#endif /* end of include guard: BREAKPOINT_H_VR7K7T1X */