2015-11-06 17:05:49 -08:00
|
|
|
|
using MatterHackers.MatterControl.PluginSystem;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MatterHackers.MatterControl.Queue.OptionsMenu
|
|
|
|
|
|
{
|
2016-03-17 10:29:29 -07:00
|
|
|
|
public class ExportGcodePlugin : MatterControlPlugin
|
|
|
|
|
|
{
|
|
|
|
|
|
public virtual string GetButtonText()
|
|
|
|
|
|
{
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
2015-11-06 17:05:49 -08:00
|
|
|
|
|
2016-03-17 10:29:29 -07:00
|
|
|
|
public virtual string GetFileExtension()
|
|
|
|
|
|
{
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
2015-11-06 17:05:49 -08:00
|
|
|
|
|
2016-03-17 10:29:29 -07:00
|
|
|
|
public virtual string GetExtensionFilter()
|
|
|
|
|
|
{
|
|
|
|
|
|
return "";
|
|
|
|
|
|
}
|
2015-11-06 17:05:49 -08:00
|
|
|
|
|
2016-03-17 10:29:29 -07:00
|
|
|
|
public virtual void Generate(string gcodeInputPath, string x3gOutputPath)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-11-06 17:05:49 -08:00
|
|
|
|
}
|