mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
12 lines
182 B
C++
12 lines
182 B
C++
#ifndef STDAPP_EDIT_HPP
|
|
#define STDAPP_EDIT_HPP
|
|
|
|
void Edit(Bar& bar);
|
|
void OnCut();
|
|
void OnCopy();
|
|
void OnPaste();
|
|
void OnDelete();
|
|
void OnUndo();
|
|
void OnRedo();
|
|
|
|
#endif
|