Don't like ads? PRO users don't see any ads ;-)
Guest

Party by -pm-

By: a guest on May 25th, 2012  |  syntax: C++  |  size: 0.39 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include <stdlib.h>
  2.  
  3. #include "Informatics.h"
  4. #include "OpenSource.h"
  5. #include "GreatWeather.h"
  6. #include "Party.h"
  7. #include "Date.h"
  8.  
  9. /**
  10.  * Hauptroutine (Callback für libc)
  11.  *
  12.  * @param int    argc Anzahl Argumente
  13.  * @param **char argv Argumentkette
  14.  */
  15. int main(int argc, char *argv[]) {
  16.  
  17.         Party *p = new Party(Date::getNextWeekend());
  18.         p->execute();
  19.  
  20.         return EXIT_SUCCESS;
  21.  
  22. }