0027932: Improvement of standard attributes usability.
[occt.git] / src / StdLPersistent / StdLPersistent_Void.hxx
1 // Copyright (c) 2015 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 #ifndef _StdLPersistent_Void_HeaderFile
16 #define _StdLPersistent_Void_HeaderFile
17
18 #include <StdObjMgt_Attribute.hxx>
19
20 #include <TDataStd_Directory.hxx>
21 #include <TDataStd_Tick.hxx>
22 #include <TDataStd_NoteBook.hxx>
23
24
25 class StdLPersistent_Void
26 {
27 protected:
28   template <class AttribClass>
29   class instance : public StdObjMgt_Attribute<AttribClass>::Static
30   {
31   public:
32     //! Read persistent data from a file.
33     Standard_EXPORT virtual void Read (StdObjMgt_ReadData&) {}
34
35     //! Import transient attribuite from the persistent data
36     Standard_EXPORT virtual void ImportAttribute() {}
37   };
38
39 public:
40   typedef instance<TDataStd_Directory> Directory;
41   typedef instance<TDataStd_Tick>      Tick;
42   typedef instance<TDataStd_NoteBook>  NoteBook;
43 };
44
45 #endif