26 #include <boost/filesystem/operations.hpp>
31 using namespace pwiz::util;
32 using namespace pwiz::proteome;
51 auto_ptr<PeptideDatabase> pdb = PeptideDatabase::create();
58 pdb->
append(record,
"darren");
63 pdb->
append(record,
"goo");
86 string filename =
"PeptideDatabaseTest.output.pdb";
89 auto_ptr<const PeptideDatabase> pdb2 = PeptideDatabase::create(filename);
92 for (
int i=0; i<pdb->
size(); ++i)
100 boost::filesystem::remove(filename);
106 auto_ptr<PeptideDatabase> pdb = PeptideDatabase::create();
108 for (
int i=0; i<10; i++)
123 int main(
int argc,
char* argv[])
128 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
129 if (
os_) *
os_ <<
"PeptideDatabaseTest\n";
136 cerr << e.what() << endl;