Cosmos/source/Cosmos.Debug.Hosts/IntelEdison.cs
José Pedro 3db5ce43bb Compiler fixes.
Compiler fixes.
Updated project.json files.
Removed *.lock.json files and updated gitignore to ignore them.
Updated some Cosmos.Debug projects.
2017-01-08 14:54:29 +00:00

19 lines
314 B
C#

using System.Collections.Generic;
namespace Cosmos.Debug.Hosts
{
public class IntelEdison : Host
{
public IntelEdison(Dictionary<string, string> aParams, bool aUseGDB) : base(aParams, aUseGDB)
{
}
public override void Start()
{
}
public override void Stop()
{
}
}
}