This is the latest WPILib src, VisionSample2013, cRIO image, ... pulled down from firstforge.wpi.edu.

There might be risks in using the top of tree rather than an official release, but the commit messages do mention fixes for some deadlocks and race conditions.

git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4066 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/azaleasource/WPILibCProgramming/trunk/WPILib/tables/ITableProvider.h b/azaleasource/WPILibCProgramming/trunk/WPILib/tables/ITableProvider.h
new file mode 100644
index 0000000..f4bbb64
--- /dev/null
+++ b/azaleasource/WPILibCProgramming/trunk/WPILib/tables/ITableProvider.h
@@ -0,0 +1,32 @@
+/*

+ * ITableProvider.h

+ *

+ *  Created on: Sep 22, 2012

+ *      Author: Mitchell Wills

+ */

+

+#ifndef ITABLEPROVIDER_H_

+#define ITABLEPROVIDER_H_

+

+

+class ITableProvider;

+

+#include "tables/ITable.h"

+

+

+/**

+ * A simple interface to provide tables

+ * 

+ * @author Mitchell

+ *

+ */

+class ITableProvider {

+	/**

+	 * Get a table by name

+	 * @param name the name of the table

+	 * @return a Table with the given name

+	 */

+	virtual ITable* GetTable(std::string name) = 0;

+};

+

+#endif /* ITABLEPROVIDER_H_ */