+
+namespace MyNode
+{
+
+class MyNode: public Flows::INode
+{
+public:
+ MyNode(std::string path, std::string nodeNamespace, std::string type, const std::atomic_bool* frontendConnected);
+ virtual ~MyNode();
+
+ virtual bool init(Flows::PNodeInfo info);
+private:
+ virtual void input(const Flows::PNodeInfo info, uint32_t index, const Flows::PVariable message);
+};
+
+}
+
+#endif
diff --git a/parsers/strip/locales/en-US/strip b/parsers/strip/locales/en-US/strip
new file mode 100644
index 00000000..564311f0
--- /dev/null
+++ b/parsers/strip/locales/en-US/strip
@@ -0,0 +1,13 @@
+{
+ "parsers/strip.hni": {
+ "strip": {
+ "label": {
+ "name": "Name"
+ },
+ "paletteHelp": "Creates a copy of the $message
object only keeping the payload
.
",
+ "help": "This node creates a copy of the $message
object only keeping the payload
.",
+ "input1Description": "Any message object.",
+ "output1Description": "A copy of the input message object only containing payload
."
+ }
+ }
+}
\ No newline at end of file
diff --git a/parsers/strip/strip.hni b/parsers/strip/strip.hni
new file mode 100644
index 00000000..2edce96e
--- /dev/null
+++ b/parsers/strip/strip.hni
@@ -0,0 +1,43 @@
+
+
+