source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareUnknown.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: 433 bytes
Line 
1#ifndef SOFTWAREUNKNOWN_SEEN
2#define SOFTWAREUNKNOWN_SEEN
3
4#include "abstractSoftware.h"
5
6class softwareUnknown : public abstractSoftware
7{
8 public :
9 
10  softwareUnknown();
11  virtual ~softwareUnknown() {;}
12
13  virtual bool createInputFile(particleBeam*,sectionToExecute* sectionToExe, string);
14  virtual bool execute(string);
15  virtual bool buildBeamAfterElements(string);
16 
17  inline string getColor() {return "#FFFFFF";}
18};
19#endif
Note: See TracBrowser for help on using the repository browser.