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