00001 #ifndef OBJECTIVES_HPP_
00002 #define OBJECTIVES_HPP_
00003
00004 #include <string>
00005 using namespace std;
00006
00011 class Objectives{
00012 public:
00017 virtual size_t nobj() const = 0;
00022 virtual string name(size_t ind) const;
00026 virtual string symbol(size_t ind) const;
00027 };
00028
00029 #endif