write the header file (.h file) of a class counter containing: a data member counter of type int. a data member named limit of type int. a static int data member named ncounters. a constructor that takes two int arguments. a function called increment that accepts no parameters and returns no value. a function called decrement that accepts no parameters and returns no value. a function called getvalue that accepts no parameters and returns an int. a static function named getncounters that accepts no parameters and returns an int.