-
Notifications
You must be signed in to change notification settings - Fork 0
/
School.h
35 lines (27 loc) · 881 Bytes
/
School.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Interactive Gym Environment and Educaitonal Kit @version 0.x
@link https://github.com/KabukiStarship/iGeek.git
@file /School.h
@author Cale McCollough <https://cookingwithcale.org>
@license Copyright (C) 2021 Kabuki Starship (TM) <kabukistarship.com>;
This Source Code Form is subject to the terms of the Mozilla Public License,
v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain
one at <https://mozilla.org/MPL/2.0/>. */
#pragma once
#include <_Config.h>
#if SEAM >= IGEEK_CORE
#ifndef IGEEK_COURSE_CODE
#define IGEEK_COURSE_CODE
#include "../Script2/Operand.h"
namespace _ {
class School : public Operand {
School();
ISC ClassCount();
void CreateRepo();
/* Script2 operations. */
virtual const Op* Star(CHC index, Crabs* crabs);
private:
ISC class_count_; //< The number of
};
} // namespace _
#endif
#endif