/*************************************************************************** pdbheaderline.cpp - description ------------------- begin : Sun Mar 24 15:56:18 2002 copyright : (C) 2002 by Cavalli Andrea email : cavalli@bioc.unizh.ch **************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include PDBHeaderLine::PDBHeaderLine(string line){ classification=simplifyWS(string(line.begin()+10,line.begin()+50)); date = simplifyWS(string(line.begin()+50,line.begin()+59)); idCode = simplifyWS(string(line.begin()+62,line.begin()+66)); } PDBHeaderLine::~PDBHeaderLine(){}