source: trunk/IPs/systemC/Environment/Data/src/Data_init.cpp @ 88

Last change on this file since 88 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 345 bytes
Line 
1#include "../include/Data.h"
2
3namespace environment {
4namespace data {
5
6  bool Data::init (std::string section, const char * filename, const char ** list_section)
7  {
8    for (uint32_t it = 0; it < nb_seg; it ++)
9      if (segment[it]->test(section) == true)
10        return segment[it]->init(filename,list_section);
11   
12    return false;
13  }
14 
15};
16};
Note: See TracBrowser for help on using the repository browser.