Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libmudflap / testsuite / libmudflap.c++ / pass57-frag.cxx
blobe4fa70176b734b98dbe823e8afa13e2ee35e0752
1 #include <vector>
2 #include <string>
4 class fitscolumn
6 private:
7 std::string name_, unit_;
8 int i, t;
9 public:
10 fitscolumn (const std::string &nm, const std::string &un,int i1,int t1)
11 : name_(nm), unit_(un), i(i1), t(t1){}
14 void init_bintab(std::vector<fitscolumn> & columns_)
16 char ttype[81], tunit[81], tform[81];
17 long repc;
18 int typecode;
19 columns_.push_back (fitscolumn (ttype,tunit,1,typecode));
22 int main ()
24 return 0;