source: git/kernel/IIntvec.h @ 07625cb

spielwiese
Last change on this file since 07625cb was ef0269, checked in by Hans Schönemann <hannes@…>, 18 years ago
*hannes: code standards git-svn-id: file:///usr/local/Singular/svn/trunk@8738 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 636 bytes
Line 
1#ifndef ITERATABLE_INTVEC_H
2#define ITERATABLE_INTVEC_H
3#include <vector>
4#include "intvec.h"
5class Intvec: public std::vector<int>{
6public:
7  Intvec(iterator first, 
8        iterator last,
9        const allocator_type& __a = allocator_type()):
10    std::vector<int>(first,last,__a){
11  }
12  Intvec(int n=0):std::vector<int>(n){}
13  Intvec(intvec& iv):std::vector<int>(iv.length()){
14    int n=iv.length();
15    for(int i=0;i<n;i++){
16      (*this)[i]=iv[i];
17    }
18  }
19  intvec* allocate_legacy_intvec_copy() const{
20    int s=size();
21    intvec* iv=new intvec(s);
22   
23    for(int i=0;i<s;i++){
24      (*iv)[i]=(*this)[i];
25    }
26    return iv;
27  }
28};
29#endif
Note: See TracBrowser for help on using the repository browser.