Ananas Library 0.9.5
aextguid.h
1/****************************************************************************
2** $Id: aextguid.h,v 1.2 2007/09/19 06:32:06 app Exp $
3**
4** Header file of the Report Result Object of Ananas
5** Designer and Engine applications
6**
7** Created : 20070819
8**
9** Copyright (C) 2005-2007 Grigory Panov <grigory.panov at gmail.com>, Moscow.
10** Copyright (C) 2005-2007 Ananas Project.
11**
12** This file is part of the Library of the Ananas
13** automation accounting system.
14**
15** This file may be distributed and/or modified under the terms of the
16** GNU General Public License version 2 as published by the Free Software
17** Foundation and appearing in the file LICENSE.GPL included in the
18** packaging of this file.
19**
20** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
21** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22**
23** See http://www.leaderit.ru/page=ananas or email sales@leaderit.ru
24** See http://www.leaderit.ru/gpl/ for GPL licensing information.
25**
26** Contact org@leaderit.ru if any conditions of this licensing are
27** not clear to you.
28**
29**********************************************************************/
30#ifndef AEXTGUID_H
31#define AEXTGUID_H
32
33#include "aextension.h"
34#include "aobject.h"
35
47class ANANAS_EXPORT aExtGUID: public AExtension
48{
49 Q_OBJECT
50public:
51 aExtGUID();
52 ~aExtGUID();
53
54
55public slots:
56 QString Generate() const;
57};
58
59#endif
Definition aextension.h:46
Definition aextguid.h:48