Ignore:
Timestamp:
May 15, 2010, 5:56:57 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
356180, 494bf6
Parents:
dbec4e
git-author:
Frederik Heber <heber@…> (05/14/10 20:14:27)
git-committer:
Frederik Heber <heber@…> (05/15/10 17:56:57)
Message:

Added all commands defined in ParseCommandLineOptions() as Actions.

  • Actions are not yet used, except verbose, version and help.
  • Files are present and included in Makefile.am
  • not unit tests written so far
  • no action has been tested so far (except for MapOfActions)
  • structure introduced to to transition from ParseCommandLineOptions to actions.
  • program name and config file are fixed arguments.

Signed-off-by: Frederik Heber <heber@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Parser/XyzParser.cpp

    rdbec4e r2e06c4  
    5959
    6060  vector<atom*> atoms = World::getInstance().getAllAtoms();
    61   for(vector<atom*>::iterator it = atoms.begin(); it < atoms.end(); it++) {
     61  for(vector<atom*>::iterator it = atoms.begin(); it != atoms.end(); it++) {
    6262    *file << fixed << (*it)->getType()->symbol << "\t" << (*it)->x[0] << "\t" << (*it)->x[1] << "\t" << (*it)->x[2] << endl;
    6363  }
Note: See TracChangeset for help on using the changeset viewer.