BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioEmblAs.h
Go to the documentation of this file.
00001 /***************************************************************************
00002                           BioEmblAs.h  -  description
00003                              -------------------
00004     begin                : Tue Jun 1 2004
00005     copyright            : (C) 2004 by Helix Team
00006     email                : parisodhana@helixgenomics.com
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 #ifndef BIOEMBLAS_H
00018 #define BIOEMBLAS_H
00019 
00020 using namespace std;
00021 #include <string>
00022 #include <vector>
00023 #include <fstream>
00024 #include <iostream>
00025 #include "BioEmblSingleAs.h"
00026 
00027 class BioEmblAs
00028 {
00029 
00030   vector<BioEmblSingleAs>as_;
00031 public:
00032   BioEmblAs();
00033   BioEmblAs(const string& de_);
00034 
00035   void setAs(vector <string> &);
00036   void showAs(ostream & = cout);
00037 
00038 };
00039 
00040 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines