Update of /cvsroot/kuml/kuml/kuml_gui/src/ige/common/views
In directory usw-pr-cvs1:/tmp/cvs-serv19107
Added Files:
CircleView.cpp PolygonView.cpp
Log Message:
Added implementation file
--- NEW FILE ---
/***************************************************************************
CircleView.cpp - description
-------------------
begin : Tue July 24 2001
copyright : (C) 2001 by the kUML Team
author : Darius Stachow
email : sta...@in...
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "CircleView.h"
CircleView::~CircleView(){}
CircleView::CircleView(Viewer * viewer, View * parent): SelectableView(viewer, parent){
}
--- NEW FILE ---
/***************************************************************************
PolygonView.cpp - description
-------------------
begin : Tue July 24 2001
copyright : (C) 2001 by the kUML Team
author : Darius Stachow
email : sta...@in...
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "PolygonView.h"
PolygonView::~PolygonView(){
}
PolygonView::PolygonView(Viewer * viewer, View * parent): SelectableView(viewer, parent) {
}
|