Commit a7485886 authored by lw's avatar lw

*** empty log message ***

parent 00fe1a5b
...@@ -23,9 +23,11 @@ wb_orepdbs::wb_orepdbs(dbs_sObject *o) ...@@ -23,9 +23,11 @@ wb_orepdbs::wb_orepdbs(dbs_sObject *o)
m_refCount = 0; m_refCount = 0;
} }
#if 0
wb_orepdbs::~wb_orepdbs() wb_orepdbs::~wb_orepdbs()
{ {
} }
#endif
/* /*
wb_orepdbs *wb_orepdbs::ref() wb_orepdbs *wb_orepdbs::ref()
......
...@@ -13,7 +13,7 @@ wb_vrep *wb_vrepdbs::ref() ...@@ -13,7 +13,7 @@ wb_vrep *wb_vrepdbs::ref()
return this; return this;
} }
wb_vrepdbs::wb_vrepdbs(const char *fileName) wb_vrepdbs::wb_vrepdbs(wb_erep *erep, const char *fileName) : m_erep(erep)
{ {
strcpy(m_fileName, fileName); strcpy(m_fileName, fileName);
...@@ -56,6 +56,12 @@ wb_vrepdbs::object(pwr_tStatus *sts, pwr_tOid oid) ...@@ -56,6 +56,12 @@ wb_vrepdbs::object(pwr_tStatus *sts, pwr_tOid oid)
return new (this) wb_orepdbs(op); return new (this) wb_orepdbs(op);
} }
wb_orep *
wb_vrepdbs::object(pwr_tStatus *sts, char *name)
{
return 0;
}
wb_orep * wb_orep *
wb_vrepdbs::object(pwr_tStatus *sts, wb_orep *parent, wb_name name) wb_vrepdbs::object(pwr_tStatus *sts, wb_orep *parent, wb_name name)
{ {
...@@ -278,6 +284,25 @@ wb_vrepdbs::vid() const ...@@ -278,6 +284,25 @@ wb_vrepdbs::vid() const
return 0; return 0;
} }
wb_erep *
wb_vrepdbs::erep() const
{
return 0;
}
wb_vrep *
wb_vrepdbs::next () const
{
return 0;
}
wb_orep *
object (pwr_tStatus *)
{
return 0;
}
wb_merep *wb_vrepdbs::merep() const wb_merep *wb_vrepdbs::merep() const
{ {
return 0; return 0;
......
...@@ -21,7 +21,7 @@ public: ...@@ -21,7 +21,7 @@ public:
dbs_sEnv m_dbsenv; dbs_sEnv m_dbsenv;
wb_vrepdbs(const char *fileName); wb_vrepdbs(wb_erep *erep, const char *fileName);
dbs_sEnv *dbsenv(); dbs_sEnv *dbsenv();
bool load(); bool load();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment