correct bug when OA is not present
This commit is contained in:
parent
9f71af1fc9
commit
58c9bb33e1
|
@ -1,5 +1,5 @@
|
||||||
// -*-compile-command:"cd ../../../../.. && make"-*-
|
// -*-compile-command:"cd ../../../../.. && make"-*-
|
||||||
// Time-stamp: "2010-08-06 14:49:15" - OpenAccessDriver.cpp
|
// Time-stamp: "2010-08-09 01:46:45" - OpenAccessDriver.cpp
|
||||||
// x-----------------------------------------------------------------x
|
// x-----------------------------------------------------------------x
|
||||||
// | This file is part of the hurricaneAMS Software. |
|
// | This file is part of the hurricaneAMS Software. |
|
||||||
// | Copyright (c) UPMC/LIP6 2008-2010, All Rights Reserved |
|
// | Copyright (c) UPMC/LIP6 2008-2010, All Rights Reserved |
|
||||||
|
@ -32,8 +32,8 @@ using namespace Hurricane;
|
||||||
#include "OpenAccessCommon.h"
|
#include "OpenAccessCommon.h"
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
using namespace CRL_OA;
|
|
||||||
#ifdef HAVE_OPENACCESS
|
#ifdef HAVE_OPENACCESS
|
||||||
|
using namespace CRL_OA;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Class to drive OA to Hurricane
|
Class to drive OA to Hurricane
|
||||||
|
@ -726,8 +726,8 @@ namespace {
|
||||||
|
|
||||||
namespace CRL {
|
namespace CRL {
|
||||||
void OpenAccess::oaDriver(const string& path, Cell* cell) {
|
void OpenAccess::oaDriver(const string& path, Cell* cell) {
|
||||||
oaCell* convertedCell = NULL;
|
|
||||||
#ifdef HAVE_OPENACCESS
|
#ifdef HAVE_OPENACCESS
|
||||||
|
oaCell* convertedCell = NULL;
|
||||||
assert(cell);
|
assert(cell);
|
||||||
cell->materialize();
|
cell->materialize();
|
||||||
//for the moment a driver for hurricaneAMS
|
//for the moment a driver for hurricaneAMS
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// -*-compile-command:"cd ../../../../.. && make"-*-
|
// -*-compile-command:"cd ../../../../.. && make"-*-
|
||||||
// Time-stamp: "2010-08-06 01:40:58" - OpenAccessParser.cpp
|
// Time-stamp: "2010-08-09 01:47:18" - OpenAccessParser.cpp
|
||||||
// x-----------------------------------------------------------------x
|
// x-----------------------------------------------------------------x
|
||||||
// | This file is part of the hurricaneAMS Software. |
|
// | This file is part of the hurricaneAMS Software. |
|
||||||
// | Copyright (c) UPMC/LIP6 2008-2010, All Rights Reserved |
|
// | Copyright (c) UPMC/LIP6 2008-2010, All Rights Reserved |
|
||||||
|
@ -28,8 +28,8 @@ using namespace Hurricane;
|
||||||
#include "OpenAccessCommon.h"
|
#include "OpenAccessCommon.h"
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
using namespace CRL_OA;
|
|
||||||
#ifdef HAVE_OPENACCESS
|
#ifdef HAVE_OPENACCESS
|
||||||
|
using namespace CRL_OA;
|
||||||
class OAParser{
|
class OAParser{
|
||||||
private:
|
private:
|
||||||
typedef map<oaLib*, Library*> OALib2LibMap;
|
typedef map<oaLib*, Library*> OALib2LibMap;
|
||||||
|
|
Loading…
Reference in New Issue