Vuo  2.3.2
Classes | Macros
VuoCommandCommon.hh File Reference

Description

VuoCommandCommon interface.

Definition in file VuoCommandCommon.hh.

Go to the source code of this file.

Classes

class  VuoCommandCommon
 Helper functions for undoable actions. More...
 

Macros

#define VuoCommandCommon_redo
 Logs the description (if any). More...
 
#define VuoCommandCommon_undo
 Logs the description (if any). More...
 

Macro Definition Documentation

◆ VuoCommandCommon_redo

#define VuoCommandCommon_redo
Value:
if (description) \
VUserLog("%s: %s", window->getWindowTitleWithoutPlaceholder().toUtf8().data(), description)

Logs the description (if any).

This is a macro so the calling method's filename and line appear in the log message.

Definition at line 77 of file VuoCommandCommon.hh.

◆ VuoCommandCommon_undo

#define VuoCommandCommon_undo
Value:
if (description) \
VUserLog("%s: Undo %s", window->getWindowTitleWithoutPlaceholder().toUtf8().data(), description)

Logs the description (if any).

This is a macro so the calling method's filename and line appear in the log message.

Definition at line 86 of file VuoCommandCommon.hh.