~ubuntu-branches/ubuntu/breezy/atlas-cpp/breezy

« back to all changes in this revision

Viewing changes to Atlas/Objects/Operation/Error.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2005-10-02 11:41:44 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051002114144-8qmn4d1cdn9g27ta
Tags: 0.5.98-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// This file may be redistributed and modified only under the terms of
2
 
// the GNU Lesser General Public License (See COPYING for details).
3
 
// Copyright 2000-2001 Stefanus Du Toit and Alistair Riddoch.
4
 
// Automatically generated using gen_cc.py.
5
 
 
6
 
#ifndef ATLAS_OBJECTS_OPERATION_ERROR_H
7
 
#define ATLAS_OBJECTS_OPERATION_ERROR_H
8
 
 
9
 
#include <Atlas/Objects/Operation/Info.h>
10
 
 
11
 
 
12
 
namespace Atlas { namespace Objects { namespace Operation { 
13
 
 
14
 
/** Something went wrong
15
 
 
16
 
This is base operation for all other
17
 
    operations and defines basic attributes. You can use this as
18
 
    starting point for browsing whole operation hiearchy. refno refers
19
 
    to operation this is reply for. In examples all attributes that
20
 
    are just as examples (and thus world specific) are started with 'e_'.
21
 
 
22
 
*/
23
 
class Error : public Info
24
 
{
25
 
  public:
26
 
    /// Construct a Error instance.
27
 
    Error();
28
 
  protected:
29
 
    /// Constructor for sub-classes.
30
 
    Error(const char *,const char *);
31
 
  public:
32
 
    /// Default destructor.
33
 
    virtual ~Error();
34
 
 
35
 
    /// Create a new class for Error.
36
 
    static Error Class();
37
 
 
38
 
protected:
39
 
 
40
 
};
41
 
 
42
 
} } } // namespace Atlas::Objects::Operation
43
 
 
44
 
#endif // ATLAS_OBJECTS_OPERATION_ERROR_H