source: trunk/source/visualization/HepRep/include/cheprep/DefaultHepRepAction.h @ 1202

Last change on this file since 1202 was 834, checked in by garnier, 16 years ago

import all except CVS

  • Property svn:executable set to *
File size: 744 bytes
Line 
1// Copyright FreeHEP, 2005.
2#ifndef CHEPREP_DEFAULTHEPREPACTION_H
3#define CHEPREP_DEFAULTHEPREPACTION_H 1
4
5#include "cheprep/config.h"
6
7#include <string>
8
9#include "HEPREP/HepRepAction.h"
10
11/**
12 * @author Mark Donszelmann
13 * @version $Id: DefaultHepRepAction.h,v 1.3 2005/06/02 21:28:45 duns Exp $
14 */
15namespace cheprep {
16
17class DefaultHepRepAction : public virtual HEPREP::HepRepAction {
18
19    private:
20        std::string name;
21        std::string expression;
22
23    public:
24        DefaultHepRepAction(std::string name, std::string expression);
25        ~DefaultHepRepAction();
26
27        std::string getName();
28        std::string getExpression();
29        HEPREP::HepRepAction* copy();
30};
31
32} // cheprep
33
34
35#endif
Note: See TracBrowser for help on using the repository browser.