missing files
This commit is contained in:
parent
97747ddfdc
commit
f44bf30adc
|
@ -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"));
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
#ifndef AENV_H_
|
||||||
|
#define AENV_H_
|
||||||
|
|
||||||
|
class AEnv {
|
||||||
|
public:
|
||||||
|
static void create(const char* technoFilePath);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* AENV_H_ */
|
Loading…
Reference in New Issue