~ubuntu-branches/ubuntu/intrepid/kdesdk/intrepid-updates

« back to all changes in this revision

Viewing changes to umbrello/umbrello/autolayout/dotautolayouter.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-28 10:11:43 UTC
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: james.westby@ubuntu.com-20080528101143-gzc3styjz1b70zxu
Tags: upstream-4.0.80
ImportĀ upstreamĀ versionĀ 4.0.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  copyright (C) 2005
3
 
 *  Umbrello UML Modeller Authors <uml-devel @uml.sf.net>
4
 
 */
5
 
 
6
 
/***************************************************************************
7
 
 *                                                                         *
8
 
 *   This program is free software; you can redistribute it and/or modify  *
9
 
 *   it under the terms of the GNU General Public License as published by  *
10
 
 *   the Free Software Foundation; either version 2 of the License, or     *
11
 
 *   (at your option) any later version.                                   *
12
 
 *                                                                         *
13
 
 ***************************************************************************/
14
 
 
15
 
#ifndef AUTOLAYOUTDOTAUTOLAYOUTER_H
16
 
#define AUTOLAYOUTDOTAUTOLAYOUTER_H
17
 
#include "baseinclude.h"
18
 
#include "graphvizautolayouter.h"
19
 
 
20
 
namespace Autolayout {
21
 
 
22
 
/**
23
 
@author Dimitri Ognibene <ognibened @yahoo.it>
24
 
*/
25
 
class DotAutolayouter : virtual public Autolayout::GraphvizAutolayouter
26
 
{
27
 
public:
28
 
    DotAutolayouter();
29
 
 
30
 
    virtual ~DotAutolayouter();
31
 
 
32
 
    virtual void run();
33
 
 
34
 
};
35
 
 
36
 
}
37
 
 
38
 
#endif