mirror of
https://github.com/ConjureETS/LOG750-LAB2.git
synced 2026-03-24 19:41:19 +00:00
11 lines
163 B
C++
11 lines
163 B
C++
#ifndef IVISITABLE_H
|
|
#define IVISITABLE_H
|
|
class Visitor;
|
|
|
|
class IVisitable {
|
|
public:
|
|
virtual void accept(Visitor& v) = 0;
|
|
};
|
|
|
|
#endif // IVISITABLE_H
|