//HEADER FILE FOR SIMPLE CLASS EXAMPLE

class test_dummy{

   public:

      test_dummy();             //CONSTRUCTOR
      ~test_dummy();            //DESTRUCTOR
      void print_td();          //MEMBER FUNCTION

      std::vector<double> _pos0;
      
   private:

      int bed;
};

