commit | 42dedc035021ca1eb2afce44386113fb227f5d75 | [log] [tgz] |
---|---|---|
author | jerrym <jerrym@f308d9b7-e957-4cde-b6ac-9a88185e7312> | Mon Feb 25 01:59:14 2013 +0000 |
committer | jerrym <jerrym@f308d9b7-e957-4cde-b6ac-9a88185e7312> | Mon Feb 25 01:59:14 2013 +0000 |
tree | ac0592287d3e9c47bd9213a252c97e5ea9f089ff | |
parent | 3c598e5d7bfcce721d7a6aaead534f18efac3050 [diff] [blame] |
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();