Index: /issm/trunk/src/c/DataSet/Elements.cpp
===================================================================
--- /issm/trunk/src/c/DataSet/Elements.cpp	(revision 4216)
+++ /issm/trunk/src/c/DataSet/Elements.cpp	(revision 4216)
@@ -0,0 +1,44 @@
+/*
+ * \file Elements.c
+ * \brief: implementation of the Elements class, derived from DataSet class
+ */
+
+/*Headers: {{{1*/
+#ifdef HAVE_CONFIG_H
+	#include "config.h"
+#else
+#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
+#endif
+
+#include <vector>
+#include <functional>
+#include <algorithm>
+#include <iostream>
+
+#include "./DataSet.h"
+#include "../shared/shared.h"
+#include "../include/include.h"
+#include "../EnumDefinitions/EnumDefinitions.h"
+
+using namespace std;
+/*}}}*/
+
+/*Object constructors and destructor*/
+/*FUNCTION Elements::Elements(){{{1*/
+Elements::Elements(){
+	return;
+}
+/*}}}*/
+/*FUNCTION Elements::Elements(int in_enum){{{1*/
+Elements::Elements(int in_enum): DataSet(in_enum){
+	//do nothing;
+	return;
+}
+/*}}}*/
+/*FUNCTION Elements::~Elements(){{{1*/
+Elements::~Elements(){
+	return;
+}
+/*}}}*/
+
+/*Object management*/
