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 {
00022 private:
00023 struct gmoRec* gmo;
00024 struct gevRec* gev;
00025
00026 public:
00030 OSrL2Gams(struct gmoRec* gmo_);
00031
00034 ~OSrL2Gams() {}
00035
00039 void writeSolution(OSResult& osresult);
00040
00044 void writeSolution(std::string& osrl);
00045 };
00046
00047 #endif