csg
December 18th, 2006, 01:56 PM
#include "SkilledCppProgrammer.h"
#include "PaidPosition.h"
int main()
{
// initialize local variables
SkilledCppProgrammer you = SkilledCppProgrammer();
PaidPosition opportunity = PaidPosition();
// details about opportunity
// we have several that fit this description
opportunity.addAttribute("salary", "100-200k");
opportunity.addAttribute("location", "NYC");
opportunity.addAttribute("type", "full-time");
opportunity.addAttribute("necessary experience", \
"C/C++", \
"UNIX", \
"multithreading", \
"STL", \
"3+ yrs" );
// these are optional and not required by all opportunities
opportunity.addAttribute("plus experience", \
"GTK", \
"RDBMS", \
"sockets", \
"C#", \
"Java");
if ( you.fit(opportunity) ) {
if ( you.like ( "cubicles", "overtime", "lousy pay", \
"incompetent coworkers", \
"high turn over rate", \
"maintenance work" ) {
(you.browser())->Google("computer jobs");
return 0;
} // if ( you want a crappy job )
else if ( you.like ( "open environment", "solid hours", \
"annually increasing salary", \
"work alongside brilliant developers", \
"very low turn over", \
"challenging, innovative projects") {
if ( you.are ( "passionate", "a problem solver", "senior level",
"hands on", "want to work in NYC" ) {
// Visit our website
(you.browser())->GoTo("www.coresearchinc.com");
// Email us to let us know who you are and find out more
(you.emailClient())->sendTo("ransome@coresearchinc.com");
return 1;
} // if ( sounds like you might fit this opportunity )
else {
// Keep us bookmarked till you're ready
(you.browser())->GoTo("www.coresearchinc.com");
if ( you.LocationIsAnIssue(opportunity) ) {
// Email us anyway. We have other clients looking for
// senior C++/Unix developers not in NYC
(you.emailClient())->sendTo("ransome@coresearchinc.com");
} // if (location is an issue)
return 1;
} // if ( this might not be the right opportunity for you )
} // if ( this opportunity sounds like something you'd be interested in )
} // if ( this opportunity fits you )
(you.browser())->Google("computer jobs");
return 0;
} // main()
#include "PaidPosition.h"
int main()
{
// initialize local variables
SkilledCppProgrammer you = SkilledCppProgrammer();
PaidPosition opportunity = PaidPosition();
// details about opportunity
// we have several that fit this description
opportunity.addAttribute("salary", "100-200k");
opportunity.addAttribute("location", "NYC");
opportunity.addAttribute("type", "full-time");
opportunity.addAttribute("necessary experience", \
"C/C++", \
"UNIX", \
"multithreading", \
"STL", \
"3+ yrs" );
// these are optional and not required by all opportunities
opportunity.addAttribute("plus experience", \
"GTK", \
"RDBMS", \
"sockets", \
"C#", \
"Java");
if ( you.fit(opportunity) ) {
if ( you.like ( "cubicles", "overtime", "lousy pay", \
"incompetent coworkers", \
"high turn over rate", \
"maintenance work" ) {
(you.browser())->Google("computer jobs");
return 0;
} // if ( you want a crappy job )
else if ( you.like ( "open environment", "solid hours", \
"annually increasing salary", \
"work alongside brilliant developers", \
"very low turn over", \
"challenging, innovative projects") {
if ( you.are ( "passionate", "a problem solver", "senior level",
"hands on", "want to work in NYC" ) {
// Visit our website
(you.browser())->GoTo("www.coresearchinc.com");
// Email us to let us know who you are and find out more
(you.emailClient())->sendTo("ransome@coresearchinc.com");
return 1;
} // if ( sounds like you might fit this opportunity )
else {
// Keep us bookmarked till you're ready
(you.browser())->GoTo("www.coresearchinc.com");
if ( you.LocationIsAnIssue(opportunity) ) {
// Email us anyway. We have other clients looking for
// senior C++/Unix developers not in NYC
(you.emailClient())->sendTo("ransome@coresearchinc.com");
} // if (location is an issue)
return 1;
} // if ( this might not be the right opportunity for you )
} // if ( this opportunity sounds like something you'd be interested in )
} // if ( this opportunity fits you )
(you.browser())->Google("computer jobs");
return 0;
} // main()