NSCL DDAS 12.2-009
Support for XIA DDAS at FRIB
SaveParams.h
Go to the documentation of this file.
1/*
2 This software is Copyright by the Board of Trustees of Michigan
3 State University (c) Copyright 2017.
4
5 You may use this software under the terms of the GNU public license
6 (GPL). The terms of this license are described at:
7
8 http://www.gnu.org/licenses/gpl.txt
9
10 Authors:
11 Ron Fox
12 Giordano Cerriza
13 NSCL
14 Michigan State University
15 East Lansing, MI 48824-1321
16*/
17
22#ifndef SAVEPARAMS_H
23#define SAVEPARAMS_H
24
25#include "CTclCommand.h"
26
27#include <string>
28
35class CSaveParams : public CTclCommand {
36public:
37 CSaveParams(Tcl_Interp *pInterp);
38 virtual ~CSaveParams();
39
40 virtual int operator()(std::vector<Tcl_Obj *> &objv);
41};
42
43#endif
Base class for Tcl commands.
Definition: SaveParams.h:35
virtual int operator()(std::vector< Tcl_Obj * > &objv)
Definition: SaveParams.cpp:50
virtual ~CSaveParams()
Definition: SaveParams.cpp:39
CSaveParams(Tcl_Interp *pInterp)
Definition: SaveParams.cpp:34
Definition: CTclCommand.h:35