NSCL DDAS 12.2-009
Support for XIA DDAS at FRIB
Release.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 RELEASE_H
23#define RELEASE_H
24
25#include "CTclCommand.h"
26
27#include <string>
28
29// Forward definitions
30
31namespace DAQ {
32namespace DDAS {
33class Configuration;
34}
35} // namespace DAQ
41class CRelease : public CTclCommand {
42private:
44
45public:
46 CRelease(Tcl_Interp *pInterp, DAQ::DDAS::Configuration &config);
47 virtual ~CRelease();
48
49 virtual int operator()(std::vector<Tcl_Obj *> &objv);
50};
51
52#endif
Base class for Tcl commands.
Definition: Release.h:41
CRelease(Tcl_Interp *pInterp, DAQ::DDAS::Configuration &config)
Definition: Release.cpp:36
virtual ~CRelease()
Definition: Release.cpp:43
virtual int operator()(std::vector< Tcl_Obj * > &objv)
Definition: Release.cpp:53
Definition: CTclCommand.h:35
Store the system configuration information needed by Readout.
Definition: Configuration.h:88