13 lines
No EOL
218 B
C++
Executable file
13 lines
No EOL
218 B
C++
Executable file
#include <iostream>
|
|
#include "Attribute.h"
|
|
|
|
using namespace std;
|
|
|
|
class Condition{
|
|
Attribute att;
|
|
|
|
public:
|
|
//currently only implemented for comparison
|
|
Condition(Attribute a);
|
|
Condition(Attribute a);
|
|
}; |