NSCL DDAS 12.2-009
Support for XIA DDAS at FRIB
WriteModPar.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
24#ifndef WRITEMODPAR_H
25#define WRITEMODPAR_H
26
27#include <CTclCommand.h>
28
29#include <string>
38class CWriteModPar : public CTclCommand {
39public:
40 CWriteModPar(Tcl_Interp *pInterp);
41 virtual ~CWriteModPar();
42
43 virtual int operator()(std::vector<Tcl_Obj *> &objv);
44};
45
46#endif
Base class for Tcl commands.
Definition: CTclCommand.h:35
Definition: WriteModPar.h:38
virtual int operator()(std::vector< Tcl_Obj * > &objv)
Definition: WriteModPar.cpp:52
virtual ~CWriteModPar()
Definition: WriteModPar.cpp:40
CWriteModPar(Tcl_Interp *pInterp)
Definition: WriteModPar.cpp:34