Add empty classes to command/classes creation (#1479)

Closes #1478
This commit is contained in:
Thad House
2018-12-09 21:25:37 -08:00
committed by Peter Johnson
parent 4119622994
commit 7d7af287f6
5 changed files with 61 additions and 0 deletions

View File

@@ -1,4 +1,19 @@
[
{
"name": "Empty Class",
"description": "Create an empty command",
"tags": [
"class"
],
"foldername": "emptyclass",
"headers": [
"ReplaceMeEmptyClass.h"
],
"source": [
"ReplaceMeEmptyClass.cpp"
],
"replacename": "ReplaceMeEmptyClass"
},
{
"name": "Command",
"description": "Create a base command",

View File

@@ -0,0 +1,10 @@
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#include "ReplaceMeEmptyClass.h"
ReplaceMeEmptyClass::ReplaceMeEmptyClass() {}

View File

@@ -0,0 +1,13 @@
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#pragma once
class ReplaceMeEmptyClass {
public:
ReplaceMeEmptyClass();
};