Skip to content

Commit

Permalink
[VVVV] added Filename property to PatchMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
joreg committed Aug 7, 2017
1 parent 5760481 commit 63ef395
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions vvvv45/src/core/Hosting/Refactoring/XMLSnippets.cs
Expand Up @@ -92,8 +92,14 @@ public string SystemName
get {return GetAttribute("systemname");}
set {SetAttribute("systemname", value);}
}

public ComponentMode ComponentMode

public string Filename
{
get { return GetAttribute("filename"); }
set { SetAttribute("filename", value); }
}

public ComponentMode ComponentMode
{
//get {return ComponentMode.Parse(GetAttribute("componentmode"));}
set {SetAttribute("componentmode", value.ToString());}
Expand Down

0 comments on commit 63ef395

Please sign in to comment.