installed bwd compat casPV constructor

This commit is contained in:
Jeff Hill
1998-06-18 00:09:39 +00:00
parent 84efd88c45
commit be88672134
2 changed files with 21 additions and 0 deletions
+12
View File
@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.8 1998/06/16 02:30:44 jhill
* allow PV to be created before the server
*
* Revision 1.7 1997/08/05 00:47:10 jhill
* fixed warnings
*
@@ -69,6 +72,15 @@ epicsShareFunc casPV::casPV () :
{
}
//
// This constructor is preserved for backwards compatibility only.
// Please do _not_ use this constructor.
//
epicsShareFunc casPV::casPV (caServer &) :
casPVI (*this)
{
}
epicsShareFunc casPV::~casPV()
{
}
+9
View File
@@ -30,6 +30,9 @@
* Modification Log:
* -----------------
* $Log$
* Revision 1.18 1998/06/16 02:34:14 jhill
* allow PVs to exist without a server
*
* Revision 1.17 1998/05/05 16:30:38 jhill
* fixed doc
*
@@ -602,6 +605,12 @@ public:
// casPV * and casPVI *
//
friend class casStrmClient;
//
// This constructor is preserved for backwards compatibility only.
// Please do _not_ use this constructor.
//
epicsShareFunc casPV (caServer &);
};
//