Ignore:
Timestamp:
03/31/11 16:12:40 (14 years ago)
Author:
Mathieu Morlighem
Message:

Cosmetics of new Options DataSet derived calss

  • moved OptionsObject to Option
  • Added check so that an option name is unique
File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Options/OptionsCell.h

    r7731 r7737  
    1111#include "../../EnumDefinitions/EnumDefinitions.h"
    1212
    13 #include "./OptionsObject.h"
     13#include "./Option.h"
    1414/*}}}*/
    1515
    16 class OptionsCell: public OptionsObject {
     16class OptionsCell: public Option {
    1717
    1818        public:
    1919
    20                 DataSet* values;
     20                Options* values;
    2121
    2222                /*OptionsCell constructors, destructors {{{1*/
     
    2828                void  DeepEcho();
    2929                void  DeepEcho(char* indent);
    30                 int   Id();
    31                 int   MyRank();
    32                 void  Marshall(char** pmarshalled_dataset);
    33                 int   MarshallSize();
    34                 void  Demarshall(char** pmarshalled_dataset);
    35                 int   Enum();
    36                 Object* copy();
     30                int   Id(){_error_("Not implemented yet");};
     31                int   MyRank(){_error_("Not implemented yet");};
     32                void  Marshall(char** pmarshalled_dataset){_error_("Not implemented yet");};
     33                int   MarshallSize(){_error_("Not implemented yet");};
     34                void  Demarshall(char** pmarshalled_dataset){_error_("Not implemented yet");};
     35                int   Enum(){_error_("Not implemented yet");};
     36                Object* copy(){_error_("Not implemented yet");};
    3737                /*}}}*/
    3838
Note: See TracChangeset for help on using the changeset viewer.