NSCL DDAS 12.2-009
Support for XIA DDAS at FRIB
CAdjustOffsets.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 FRIB
14 Michigan State University
15 East Lansing, MI 48824-1321
16*/
17
22#ifndef ADJUSTOFFSETS_H
23#define ADJUSTOFFSETS_H
24
25#include "CTclCommand.h"
26
27#include <string>
28
36public:
37 CAdjustOffsets(Tcl_Interp *pInterp);
38 virtual ~CAdjustOffsets();
39
40 virtual int operator()(std::vector<Tcl_Obj *> &objv);
41};
42
43#endif
Base class for Tcl commands.
Definition: CAdjustOffsets.h:35
virtual ~CAdjustOffsets()
Definition: CAdjustOffsets.cpp:40
virtual int operator()(std::vector< Tcl_Obj * > &objv)
Definition: CAdjustOffsets.cpp:53
CAdjustOffsets(Tcl_Interp *pInterp)
Definition: CAdjustOffsets.cpp:34
Definition: CTclCommand.h:35