Ignore:
Timestamp:
Jun 26, 2007, 12:05:36 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jenga/include/smoothie/Symbol.h

    r170 r190  
    33#include <vector>
    44#include <string>
     5
     6#include <jenga/include/common/BoostXmlSupport.h>
    57
    68#include "Namespace.h"
     
    2022    Symbol( const char *fullName );
    2123    Symbol( const string &fullName );
     24    Symbol()
     25    {
     26    }
    2227
    2328    const NamespaceScopes &GetNamespaceScopes() const
     
    2934        return name;
    3035    }
     36
     37private:
     38    friend class boost::serialization::access;
     39    template<class Archive> void serialize(Archive& ar, const unsigned int version)
     40    {
     41        //ar & BOOST_SERIALIZATION_NVP( namespaceScopes );
     42        ar & BOOST_SERIALIZATION_NVP( name );
     43    }
    3144};
Note: See TracChangeset for help on using the changeset viewer.