OpenASIP 2.2
Loading...
Searching...
No Matches
ProDeClipboard.cc
Go to the documentation of this file.
1/*
2 Copyright (c) 2002-2009 Tampere University.
3
4 This file is part of TTA-Based Codesign Environment (TCE).
5
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and associated documentation files (the "Software"),
8 to deal in the Software without restriction, including without limitation
9 the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 and/or sell copies of the Software, and to permit persons to whom the
11 Software is furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23 */
24/**
25 * @file ProDeClipboard.cc
26 *
27 * Implementation of the ProDeClipboard class.
28 *
29 * @author Veli-Pekka Jääskeläinen 2004 (vjaaskel-no.spam-cs.tut.fi)
30 */
31
32#include "ProDeClipboard.hh"
33#include "ObjectState.hh"
34
35
37
38/**
39 * The Constructor.
40 */
41ProDeClipboard::ProDeClipboard() : contents_(NULL) {
42}
43
44
45/**
46 * The Destructor.
47 */
49 if (contents_ != NULL) {
50 delete contents_;
51 contents_ = NULL;
52 }
53}
54
55
56/**
57 * Returns the singleton instance of the clipboard.
58 *
59 * @return Singleton instance of the clipboard.
60 */
63 if (instance_ == NULL) {
65 }
66 return instance_;
67}
68
69
70/**
71 * Deletes the singleton instance of the clipboard.
72 */
73void
75 if (instance_ != NULL) {
76 delete instance_;
77 instance_ = NULL;
78 }
79}
80
81
82/**
83 * Sets the clipboard contents.
84 *
85 * @param component Copied/cut component.
86 */
87void
89 ObjectState* component, const TTAMachine::Machine* sourceMachine) {
90 if (contents_ != NULL) {
91 delete contents_;
92 }
94 contents_ = component;
95}
96
97
98/**
99 * Returns a copy of the clipboard contents.
100 *
101 * @return Copy of the cliboard contents.
102 */
105
106 if (contents_ == NULL) {
107 return NULL;
108 }
109
110 ObjectState* component = new ObjectState(*contents_);
111 return component;
112}
113
114
115/**
116 * Returns true if the clipboard is empty.
117 *
118 * @return true, if the clipboard is empty.
119 */
120bool
122 if (contents_ == NULL) {
123 return true;
124 }
125 return false;
126}
const TTAMachine::Machine * sourceMachine_
ObjectState * copyContents()
static void destroy()
const TTAMachine::Machine * sourceMachine()
static ProDeClipboard * instance()
static ProDeClipboard * instance_
ObjectState * contents_
void setContents(ObjectState *contents, const TTAMachine::Machine *sourceMachine)