mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
29 lines
160 B
C++
29 lines
160 B
C++
#include "ActionManager.h"
|
|
|
|
Action::Action()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void Action::clear()
|
|
{
|
|
|
|
}
|
|
|
|
void Action::capture()
|
|
{
|
|
|
|
}
|
|
|
|
void Action::undo()
|
|
{
|
|
|
|
}
|
|
|
|
void Action::redo()
|
|
{
|
|
|
|
}
|
|
|