// file : odb/pragma.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v3; see accompanying LICENSE file #ifndef ODB_PRAGMA_HXX #define ODB_PRAGMA_HXX #include #include #include #include #include struct pragma { pragma (std::string const& n, std::string const& v, location_t l) : name (n), value (v), loc (l) { } bool operator< (pragma const& y) const { return name < y.name; } std::string name; std::string value; location_t loc; }; typedef std::vector pragma_list; // A set of pragmas. Insertion of a pragma with the same name // overrides the old value. // struct pragma_set: std::set { typedef std::set base; void insert (pragma const& p) { std::pair r (base::insert (p)); if (!r.second) { pragma& x (const_cast (*r.first)); x = p; } } template void insert (I begin, I end) { for (; begin != end; ++begin) insert (*begin); } }; // Position pragmas inside a class or namespace. The key for the // namespace case is the global_namespace node. // typedef std::map loc_pragmas; // Pragmas associated with this declaration. // typedef std::map decl_pragmas; extern loc_pragmas loc_pragmas_; extern decl_pragmas decl_pragmas_; extern "C" void register_odb_pragmas (void*, void*); // Check that the pragma is applicable to the declaration. Return true // on success, complain and return false otherwise. // bool check_decl_type (tree decl, std::string const& name, std::string const& prag, location_t); #endif // ODB_PRAGMA_HXX