/*-----
  Header file for function: x
  Name:
  last modified:
-----*/

#ifndef X_H    // replace X with the NAME of your function in all-caps
#define X_H

// #includes if needed for this function's arguments or
//     named constant declarations -- would need:
#include <string>
using namespace std;
// ...if function has any string parameters, for example.

// any named constant declarations;

// header of function x ended with semicolon;

#endif