Phase 06 complete: - Namespace renamed in 62 .cs files (namespace + using directives) - AssemblyName + RootNamespace updated in csproj files - FanucProgramManager.csproj → NcProgramManager.csproj - FanucProgramManager.sln → NcProgramManager.sln - FanucProgramManager.Tests/ → NcProgramManager.Tests/ - FANUCMachine.cs deleted (dead code, zero references) Fanuc-prefixed class names kept (FanucMachine, FanucProgram, IFanucMachine) — manufacturer identifiers, not project names. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
907 B
C#
Executable file
26 lines
907 B
C#
Executable file
namespace NcProgramManager.Cnc.Fanuc
|
|
{
|
|
public sealed class FanucCapabilities
|
|
{
|
|
public string CncType { get; set; }
|
|
public char ModelLetter { get; set; }
|
|
public bool IsISeries { get; set; }
|
|
public string Series { get; set; }
|
|
public string Version { get; set; }
|
|
public string MtType { get; set; }
|
|
public int MaxAxis { get; set; }
|
|
|
|
public FanucDialect Dialect { get; set; }
|
|
|
|
public bool SupportsPathBasedPrograms { get; set; }
|
|
public bool SupportsPdfProgramApi { get; set; }
|
|
public bool SupportsAlmMsg2 { get; set; }
|
|
public bool SupportsUpDownload4 { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return "Fanuc " + (CncType ?? "?").Trim() + "i-" + ModelLetter +
|
|
" (" + Dialect + ", " + (MtType ?? "?").Trim() + ", " + MaxAxis + " axes)";
|
|
}
|
|
}
|
|
}
|