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