missing files

This commit is contained in:
Christophe Alexandre 2008-05-06 13:07:24 +00:00
parent 97747ddfdc
commit f44bf30adc
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#include "DataBase.h"
#include "Technology.h"
using namespace Hurricane;
#include "ATechnologyXmlParser.h"
#include "AEnv.h"
void AEnv::create(const char* technoFilePath) {
DataBase* db = getDataBase();
if (db) {
}
db = DataBase::create();
Technology* techno = Technology::create(db, Name("AnalogicTechnology"));
}

View File

@ -0,0 +1,9 @@
#ifndef AENV_H_
#define AENV_H_
class AEnv {
public:
static void create(const char* technoFilePath);
};
#endif /* AENV_H_ */