Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.HLScript/3.3/VariableStore.cs @ 10359

Last change on this file since 10359 was 10332, checked in by jkarder, 11 years ago

#2136: added prototype of a scripting environment

File size: 508 bytes
Line 
1using HeuristicLab.Collections;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
5
6namespace HeuristicLab.HLScript {
7  [Item("VariableStore", "Represents a variable store.")]
8  [StorableClass]
9  public class VariableStore : ObservableDictionary<string, object>, IContent {
10    [StorableConstructor]
11    protected VariableStore(bool deserializing) : base(deserializing) { }
12    public VariableStore() : base() { }
13  }
14}
Note: See TracBrowser for help on using the repository browser.