File: undo_delete_link.cpp

package info (click to toggle)
antimony 0.9.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,476 kB
  • sloc: cpp: 42,596; ansic: 28,661; python: 1,093; yacc: 128; lex: 114; sh: 90; makefile: 10
file content (35 lines) | stat: -rw-r--r-- 778 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <Python.h>

#include "undo/undo_delete_link.h"
#include "undo/undo_delete_multi.h"

#include "graph/datum.h"

UndoDeleteLink::UndoDeleteLink(const Datum* source, Datum* target,
                               UndoDeleteMulti* parent)
    : UndoCommand(parent), source(source), target(target)
{
    setText("'delete link'");
}

////////////////////////////////////////////////////////////////////////////////

void UndoDeleteLink::undo()
{
    target->installLink(source);
}

void UndoDeleteLink::redo()
{
    target->uninstallLink(source);
}

////////////////////////////////////////////////////////////////////////////////

void UndoDeleteLink::swapPointer(Datum* a, Datum* b) const
{
    if (a == source)
        source = b;
    if (a == target)
        target = b;
}