Integrations (PTC products, 3rd party products and code) > Code integration (Ada, ARINC 653, C, C#, C++, IDL, Java, SQL and VB) > C++ code > Auxiliary Topics > Example Code
  
Example Code
// Sometimes developers (for whatever reason) don't name a parameter.
// In these cases the parameter is called something like unnamed0 but
// when we generate it we give it no name
void myFunc(char* name, int age, bool); // Last parameter is anonymous