#ifndef _DEFAULT_H_
#define _DEFAULT_H_


class Test2 {
   
   
   private:
   double data1;
   float data2;
   
   
   public:
   Test2() noexcept = default;
   ~Test2() noexcept = default;
   double function1(double x);
   float function2();
};

#endif