source: git/kernel/IIntvec.h @ 36dd34

spielwiese
Last change on this file since 36dd34 was 210e07, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: testing headers with "make test.o" FIX: cleaning up headers in kernel: TODO: kutil.h?! FIX: febase.h -> old.febase.h (remove later on) ADD: dummy headers instead of some splited or moved: febase.h, modulop.h (for later fixing) FIX: renamed various obsolette files into "old.*"
  • Property mode set to 100644
File size: 641 bytes
Line 
1#ifndef ITERATABLE_INTVEC_H
2#define ITERATABLE_INTVEC_H
3#include <vector>
4#include <misc/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.