Updates from upstream (firstforge): NetworkTable handles deleted values, CAN has a new minimum version, ...

git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4155 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/azaleasource/WPILibCProgramming/trunk/WPILib/Commands/Command.h b/azaleasource/WPILibCProgramming/trunk/WPILib/Commands/Command.h
index 760c8f5..2704624 100644
--- a/azaleasource/WPILibCProgramming/trunk/WPILib/Commands/Command.h
+++ b/azaleasource/WPILibCProgramming/trunk/WPILib/Commands/Command.h
@@ -65,6 +65,7 @@
 	CommandGroup *GetGroup();

 	void SetRunWhenDisabled(bool run);

 	bool WillRunWhenDisabled();

+	int GetID();

 

 

 protected:

@@ -147,7 +148,8 @@
 	bool m_runWhenDisabled;

 	/** The {@link CommandGroup} this is in */

 	CommandGroup *m_parent;

-	

+	int m_commandID;

+	static int m_commandCounter;

 	

 public:

 	virtual std::string GetName();