20 lines
218 B
C++
20 lines
218 B
C++
#ifndef EVENT_H
|
|
#define EVENT_H
|
|
|
|
#include "pch.hpp"
|
|
|
|
namespace Archimedes {
|
|
|
|
class Event {
|
|
|
|
public:
|
|
|
|
virtual ~Event() {}
|
|
|
|
virtual operator std::string() const = 0;
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|