It's a member function prototype for the constructor of the class. Just like all the other constructor prototypes that are there in that class.
You know how function prototypes work right? It's just like that but for the class. Those members are expected (though not guaranteed) to be redefined later on after the class declaration.
You probably know what constructors are because at least the program you posted thinks you do.