source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareUsersprogram.h @ 455

Last change on this file since 455 was 455, checked in by garnier, 11 years ago

grosse modification pour intégrer les sections

File size: 626 bytes
Line 
1#ifndef SOFTWAREUSERSPROGRAM_SEEN
2#define SOFTWAREUSERSPROGRAM_SEEN
3
4#include "abstractSoftware.h"
5
6class softwareUsersprogram : public abstractSoftware
7{
8
9    protected :
10
11  string nomProgram_;
12  string outputFileName_;
13 public : 
14    softwareUsersprogram();
15    softwareUsersprogram(string inputFileName, sectionToExecute*);
16
17  virtual ~softwareUsersprogram() {;}
18  virtual bool createInputFile( particleBeam* beamBefore, string workingDir);
19
20  virtual bool  execute(string workingDir);
21
22
23virtual bool buildBeamAfterElements(string workingDir);
24
25    inline string getColor() {
26        return "#4e4747";
27    }
28   
29};
30#endif
Note: See TracBrowser for help on using the repository browser.