ROSE  0.11.96.11
Cxx_GrammarSerialization.h
1 // Declarations and templates for supporting boost::serialization of Sage IR nodes.
2 #ifndef ROSE_Cxx_GrammarSerialization_H
3 #define ROSE_Cxx_GrammarSerialization_H
4 
5 #ifdef ROSE_HAVE_BOOST_SERIALIZATION_LIB
6 
7 // sage3basic.h or rose.h must be inlucded first from a .C file (don't do it here!)
8 #include <boost/serialization/export.hpp>
9 
10 // The declaration half of exporting polymorphic classes.
11 BOOST_CLASS_EXPORT_KEY(SgFile);
12 BOOST_CLASS_EXPORT_KEY(SgSupport);
13 
14 
21 template<class Archive>
22 void roseAstSerializationRegistration(Archive &archive) {
23  archive.template register_type<SgFile>();
24  archive.template register_type<SgSupport>();
25 }
26 
27 #endif
28 #endif
SgFile
This class represents a source file for a project (which may contian many source files and or directo...
Definition: Cxx_Grammar.h:21163
SgSupport
This class represents the base class of a numbr of IR nodes that don't otherwise fit into the existin...
Definition: Cxx_Grammar.h:7690