View Single Post
  #8   Spotlight this post!  
Unread 14-01-2016, 09:38
tig567899's Avatar
tig567899 tig567899 is offline
Team 6070 Programming Captain
AKA: Tiger Kong
FRC #6070 (Gryphon Machine)
Team Role: Programmer
 
Join Date: Jan 2016
Rookie Year: 2016
Location: Mississauga
Posts: 36
tig567899 is an unknown quantity at this point
Re: C++ Code Not working

I have screenshotted the thing but this forum doesn't let me post the image.

The code is below:
Code:
#include "WPILib.h"

class Robot: public IterativeRobot
{
private:

	void RobotInit()
	{
	}

	void AutonomousInit()
	{

	}

	void AutonomousPeriodic()
	{

	}

	void TeleopInit()
	{

	}

	void TeleopPeriodic()
	{

	}

	void TestPeriodic()
	{

	}

};

START_ROBOT_CLASS(Robot);
The error is: Invalid arguments', line 38, which is the START_ROBOT_CLASS(Robot); line.