mirror of
https://github.com/MeowLynxSea/ceditor.git
synced 2025-07-09 10:54:37 +00:00
14 lines
149 B
C++
14 lines
149 B
C++
#ifndef ACTIONMANAGER_H
|
|
#define ACTIONMANAGER_H
|
|
|
|
enum class EditAction {
|
|
Initialize,
|
|
Insert,
|
|
Delete,
|
|
};
|
|
|
|
class ActionManager {
|
|
|
|
}
|
|
|
|
#endif |