Nothing to worry about
This commit is contained in:
parent
0667c7ab88
commit
1846c25784
@ -4,6 +4,8 @@
|
||||
#include "Event.h"
|
||||
#include "Wire.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
class AndGate : public Gate {
|
||||
public:
|
||||
AndGate(int d, Wire* wire1, Wire* wire2, Wire* wire3);
|
||||
|
@ -4,6 +4,8 @@
|
||||
#include "Event.h"
|
||||
#include "Wire.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
class NorGate : public Gate {
|
||||
public:
|
||||
NorGate(int d, Wire* wire1, Wire* wire2, Wire* wire3);
|
||||
|
@ -4,6 +4,8 @@
|
||||
#include "Wire.h"
|
||||
#include "Event.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
class NotGate : public Gate {
|
||||
public:
|
||||
NotGate(int d, Wire* wire1, Wire* wire2);
|
||||
|
@ -4,6 +4,8 @@
|
||||
#include "Event.h"
|
||||
#include "Wire.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
class OrGate : public Gate {
|
||||
public:
|
||||
OrGate(int d, Wire* wire1, Wire* wire2, Wire* wire3);
|
||||
|
@ -4,6 +4,8 @@
|
||||
#include "Event.h"
|
||||
#include "Wire.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
class XnorGate : public Gate {
|
||||
public:
|
||||
XnorGate(int d, Wire* wire1, Wire* wire2, Wire* wire3);
|
||||
|
@ -4,6 +4,8 @@
|
||||
#include "Event.h"
|
||||
#include "Wire.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
class XorGate : public Gate {
|
||||
public:
|
||||
XorGate(int d, Wire* wire1, Wire* wire2, Wire* wire3);
|
||||
|
Loading…
Reference in New Issue
Block a user