Index: /issm/trunk-jpl/src/c/classes/objects/Options/GenericOption.h
===================================================================
--- /issm/trunk-jpl/src/c/classes/objects/Options/GenericOption.h	(revision 14646)
+++ /issm/trunk-jpl/src/c/classes/objects/Options/GenericOption.h	(revision 14647)
@@ -39,14 +39,14 @@
 		GenericOption(){ /*{{{*/
 
-			name  =NULL;
-			numel =0;
-			ndims =0;
-			size  =NULL;
+			name   = NULL;
+			numel  = 0;
+			ndims  = 0;
+			size   = NULL;
 
 		} /*}}}*/
 		~GenericOption(){ /*{{{*/
 
-			if(size) xDelete<int>(size);
-			if(name) xDelete<char>(name);
+			if(name)   xDelete<char>(name);
+			if(size)   xDelete<int>(size);
 
 		} /*}}}*/
@@ -79,14 +79,30 @@
 			_printLine_(indent << "         value: " << value);;
 		} /*}}}*/
-		int   Id(){_error_("Not implemented yet");};
-		int   ObjectEnum(){return GenericOptionEnum;};
-		Object* copy(){_error_("Not implemented yet");};
+		int  Id(){/*{{{*/
+			_error_("Not implemented yet");
+		};/*}}}*/
+		int  ObjectEnum(){/*{{{*/
+			return GenericOptionEnum;
+		};/*}}}*/
+		Object* copy(){/*{{{*/
+			_error_("Not implemented yet");
+		};/*}}}*/
 
 		/*GenericOption functions: */
-		char* Name(){return name;};
-		int   NumEl(){return numel;};
-		int   NDims(){return ndims;};
-		int*  Size(){return size;};
-		void  Get(OptionType* pvalue){ *pvalue=value; };
+		char* Name(){/*{{{*/
+			return name;
+		};/*}}}*/
+		int   NumEl(){/*{{{*/
+			return numel;
+		};/*}}}*/
+		int   NDims(){/*{{{*/
+			return ndims;
+		};/*}}}*/
+		int*  Size(){/*{{{*/
+			return size;
+		};/*}}}*/
+		void  Get(OptionType* pvalue){/*{{{*/
+			*pvalue=value; 
+		};/*}}}*/
 };
 
