mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
Compiler fixes. Updated project.json files. Removed *.lock.json files and updated gitignore to ignore them. Updated some Cosmos.Debug projects.
19 lines
314 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|