umbrello  2.32.0
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
rubycodeoperation.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2005 *
8  * Richard Dale <Richard_Dale@tipitina.demon.co.uk> *
9  * copyright (C) 2006-2020 *
10  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
11  ***************************************************************************/
12 
13 #ifndef RUBYCODEOPERATION_H
14 #define RUBYCODEOPERATION_H
15 
16 #include "codeoperation.h"
17 
18 #include <QString>
19 
21 
22 class RubyCodeOperation : virtual public CodeOperation
23 {
24  Q_OBJECT
25 public:
26 
30  RubyCodeOperation (RubyClassifierCodeDocument * doc, UMLOperation * op, const QString & body = QString(), const QString & comment = QString());
31 
35  virtual ~RubyCodeOperation ();
36 
37  virtual int lastEditableLine();
38 
39 protected:
40 
42 
43 };
44 
45 #endif // RUBYCODEOPERATION_H
RubyCodeOperation(RubyClassifierCodeDocument *doc, UMLOperation *op, const QString &body=QString(), const QString &comment=QString())
Definition: rubycodeoperation.cpp:26
void updateMethodDeclaration()
Definition: rubycodeoperation.cpp:42
virtual int lastEditableLine()
Definition: rubycodeoperation.cpp:202
virtual ~RubyCodeOperation()
Definition: rubycodeoperation.cpp:37
Definition: rubycodeoperation.h:22
Definition: codeoperation.h:23
Definition: rubyclassifiercodedocument.h:36
Definition: operation.h:24