0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / IFSelect / IFSelect_IntParam.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <IFSelect_IntParam.hxx>
16 #include <Interface_Static.hxx>
17 #include <Standard_Type.hxx>
18
19 IMPLEMENT_STANDARD_RTTIEXT(IFSelect_IntParam,MMgt_TShared)
20
21 IFSelect_IntParam::IFSelect_IntParam ()
22       {  theval = 0;  }
23
24     void  IFSelect_IntParam::SetStaticName (const Standard_CString statname)
25       {  thestn.Clear();  thestn.AssignCat (statname);  }
26
27     Standard_Integer  IFSelect_IntParam::Value () const 
28 {
29   if (thestn.Length() == 0) return theval;
30   if (!Interface_Static::IsSet(thestn.ToCString()) ) return theval;
31   return Interface_Static::IVal(thestn.ToCString());
32 }
33
34     void  IFSelect_IntParam::SetValue (const Standard_Integer val)
35 {
36   theval = val;
37   if (thestn.Length() == 0) return;
38   if (!Interface_Static::IsPresent(thestn.ToCString()) ) return;
39   Interface_Static::SetIVal (thestn.ToCString(),theval);
40 }