mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
24 lines
439 B
C#
24 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.Debug.VSDebugEngine.Host
|
|
{
|
|
public class IntelEdison: Base
|
|
{
|
|
public IntelEdison(NameValueCollection aParams, bool aUseGDB) : base(aParams, aUseGDB)
|
|
{
|
|
}
|
|
|
|
public override void Start()
|
|
{
|
|
}
|
|
|
|
public override void Stop()
|
|
{
|
|
}
|
|
}
|
|
}
|