mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
26 lines
546 B
C#
26 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Debug.VSDebugEngine.Host {
|
|
public class Manual : Base {
|
|
|
|
public Manual(NameValueCollection aParams)
|
|
: base(aParams) {
|
|
}
|
|
|
|
public override string GetHostProcessExe() {
|
|
return "Cosmos.Launch.Manual.exe";
|
|
}
|
|
|
|
public override string Start(bool aGDB) {
|
|
return "";
|
|
}
|
|
|
|
public override void Stop() {
|
|
// TODO - Send off
|
|
}
|
|
}
|
|
}
|