casacore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CASATask.h
Go to the documentation of this file.
1 //# CasaTask.h:
2 //# Copyright (C) 2005
3 //# Associated Universities, Inc. Washington DC, USA.
4 //#
5 //# This library is free software; you can redistribute it and/or modify it
6 //# under the terms of the GNU Library General Public License as published by
7 //# the Free Software Foundation; either version 2 of the License, or (at your
8 //# option) any later version.
9 //#
10 //# This library is distributed in the hope that it will be useful, but WITHOUT
11 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 //# License for more details.
14 //#
15 //# You should have received a copy of the GNU Library General Public License
16 //# along with this library; if not, write to the Free Software Foundation,
17 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18 //#
19 //# Correspondence concerning AIPS++ should be addressed as follows:
20 //# Internet email: aips2-request@nrao.edu.
21 //# Postal address: AIPS++ Project Office
22 //# National Radio Astronomy Observatory
23 //# 520 Edgemont Road
24 //# Charlottesville, VA 22903-2475 USA
25 //#
26 //#
27 //# $Id$
28 
29 #ifndef _CASA_TASK_H
30 #define _CASA_TASK_H
31 
32 #include <casacore/casa/aips.h>
35 
36 namespace casacore { //# NAMESPACE CASACORE - BEGIN
37 
38 // <summary>Task interface</summary>
39 
40 // <use visibility=export>
41 
42 // <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
43 // </reviewed>
44 
45 // <prerequisite>
46 // <li> SomeClass
47 // <li> SomeOtherClass
48 // <li> some concept
49 // </prerequisite>
50 //
51 // <etymology>
52 // </etymology>
53 //
54 // <synopsis>
55 // </synopsis>
56 //
57 // <example>
58 // </example>
59 //
60 // <motivation>
61 // </motivation>
62 //
63 // <templating arg=T>
64 // <li>
65 // <li>
66 // </templating>
67 //
68 // <thrown>
69 // <li>
70 // <li>
71 // </thrown>
72 //
73 // <todo asof="yyyy/mm/dd">
74 // <li> add this feature
75 // <li> fix this bug
76 // <li> start discussion of this possible extension
77 // </todo>
78 
79 class CASATask
80 {
81  public:
82  CASATask(const Record &params) : pset(params) { }
83  CASATask(const RecordDesc &desc) { pset = Record(desc); }
84  virtual ~CASATask() { }
85 
86  Record getParams() const { return pset; }
87  void setParams(const Record &params) { pset = params; }
88 
89  private:
90  CASATask();
91 
93 };
94 
95 } //# NAMESPACE CASACORE - END
96 
97 #endif
void setParams(const Record &params)
Definition: CASATask.h:87
CASATask(const RecordDesc &desc)
Definition: CASATask.h:83
Task interface.
Definition: CASATask.h:79
Description of the fields in a record object.
Definition: RecordDesc.h:105
CASATask(const Record &params)
Definition: CASATask.h:82
A hierarchical collection of named fields of various types.
Definition: Record.h:180
Record getParams() const
Definition: CASATask.h:86
virtual ~CASATask()
Definition: CASATask.h:84