Deleted Added
sdiff udiff text old ( 12898:9c24286c7ddb ) new ( 12948:cd54609046c4 )
full compact
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 25 unchanged lines hidden (view full) ---

34#include <vector>
35
36namespace sc_core
37{
38
39class sc_attr_base
40{
41 public:
42 sc_attr_base(const std::string &_name);
43 sc_attr_base(const sc_attr_base &other);
44 virtual ~sc_attr_base();
45
46 const std::string &name() const;
47
48 private:
49 // Disabled
50 sc_attr_base();
51 sc_attr_base &operator = (const sc_attr_base &);
52
53 const std::string _name;
54};
55
56template <class T>
57class sc_attribute : public sc_attr_base
58{
59 public:
60 sc_attribute(const std::string &_name) : sc_attr_base(_name) {}
61 sc_attribute(const std::string &_name, const T &t) :
62 sc_attr_base(_name), value(t)
63 {}
64 sc_attribute(const sc_attribute<T> &other) :
65 sc_attr_base(other.name()), value(other.value)
66 {}
67 virtual ~sc_attribute() {}
68 T value;
69
70 private:
71 // Disabled
72 sc_attribute() {}
73 sc_attribute<T> &operator = (const sc_attribute<T> &) { return *this; }
74};
75
76class sc_attr_cltn
77{
78 public:
79 typedef sc_attr_base *elem_type;
80 typedef std::vector<elem_type>::iterator iterator;
81 typedef std::vector<elem_type>::const_iterator const_iterator;
82
83 iterator begin();
84 const_iterator begin() const;
85 iterator end();
86 const_iterator end() const;
87
88 private:
89 // Disabled

--- 11 unchanged lines hidden (view full) ---

101 bool push_back(sc_attr_base *);
102
103 sc_attr_base *operator [] (const std::string &name);
104 const sc_attr_base *operator [] (const std::string &name) const;
105
106 sc_attr_base *remove(const std::string &name);
107
108 void remove_all();
109 int size() const;
110
111 private:
112 std::vector<sc_attr_base *> cltn;
113};
114
115} // namespace sc_core
116
117#endif //__SYSTEMC_EXT_CORE_SC_ATTR_HH__