Source
20
20
//# Postal address: AIPS++ Project Office
21
21
//# National Radio Astronomy Observatory
22
22
//# 520 Edgemont Road
23
23
//# Charlottesville, VA 22903-2475 USA
24
24
//#
25
25
26
26
#ifndef ACTIONFLAGALL_H_
27
27
#define ACTIONFLAGALL_H_
28
28
29
29
#include <plotms/Actions/ActionTool.h>
30
+
#include <plotms/Actions/FlagActionUtil.h>
30
31
31
32
namespace casa {
32
33
33
-
class ActionFlagAll : public ActionTool {
34
+
class ActionFlagAll : public ActionTool, public FlagActionUtil {
34
35
public:
35
36
ActionFlagAll( Client* client );
36
37
37
38
virtual ~ActionFlagAll();
38
39
protected:
39
40
virtual bool doTool(PlotMSApp* plotms);
40
41
virtual ToolCode getToolCode() const;
41
42
};
42
43
43
44
} /* namespace casa */