00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef OSRL2GAMS_HPP_
00010 #define OSRL2GAMS_HPP_
00011
00012 #include "GAMSlinksConfig.h"
00013
00014 class OSResult;
00015 struct gmoRec;
00016 struct gevRec;
00017
00020 class OSrL2Gams {
00021 private:
00022 struct gmoRec* gmo;
00023 struct gevRec* gev;
00024
00025 public:
00029 OSrL2Gams(struct gmoRec* gmo_);
00030
00033 ~OSrL2Gams() {}
00034
00038 void writeSolution(OSResult& osresult);
00039
00043 void writeSolution(std::string& osrl);
00044 };
00045
00046 #endif