Index: /issm/trunk/src/c/objects/Node.cpp
===================================================================
--- /issm/trunk/src/c/objects/Node.cpp	(revision 8259)
+++ /issm/trunk/src/c/objects/Node.cpp	(revision 8260)
@@ -266,32 +266,4 @@
 }
 /*}}}*/
-/*FUNCTION Node::copy {{{1*/
-Object* Node::copy() {
-		
-	int k,l;
-
-	Node* node=NULL;
-	node=new Node();
-
-	/*Deal with hooks*/
-	node->hvertex=(Hook*)this->hvertex->copy();
-	node->indexing=(DofIndexing)new DofIndexing(this->indexing);
-
-	/*id: */
-	node->id=this->id;
-	node->sid=this->sid;
-	node->analysis_type=this->analysis_type;
-
-	/*intialize inputs : */
-	if(this->inputs){
-		node->inputs=(Inputs*)this->inputs->Copy();
-	}
-	else{
-		node->inputs=new Inputs();
-	}
-	for(k=0;k<3;k++) for(l=0;l<3;l++) node->referential[k][l]=this->referential[k][l]; 
-}
-
-/*}}}*/
 
 /*Node management:*/
Index: /issm/trunk/src/c/objects/Node.h
===================================================================
--- /issm/trunk/src/c/objects/Node.h	(revision 8259)
+++ /issm/trunk/src/c/objects/Node.h	(revision 8260)
@@ -46,5 +46,5 @@
 		void  Demarshall(char** pmarshalled_dataset);
 		int   Enum();
-		Object* copy();
+		Object* copy(){_error_("Not implemented yet (similar to Elements)");};
 		/*}}}*/
 		/*Update virtual functions definitions: {{{1*/
