X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=3d3e01d4787df95cbce69d9f1dd5471eaed8cbed;hb=00f6bae935837b38b0d03a5928ba8175d460413f;hp=2d9fcc639591a5226101f40eb8ded32911447dbf;hpb=520362f8c4082820193f09e43b27a8c7df2ef011;p=pulseview.git diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index 2d9fcc63..3d3e01d4 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_HPP @@ -34,13 +33,10 @@ struct srd_session; namespace pv { -namespace view { -class LogicSignal; -} - namespace data { class Logic; +class SignalBase; namespace decode { @@ -57,9 +53,9 @@ public: void show(bool show = true); const std::map >& channels() const; + std::shared_ptr >& channels() const; void set_channels(std::map > channels); + std::shared_ptr > channels); const std::map& options() const; @@ -77,7 +73,7 @@ private: bool shown_; - std::map > + std::map > channels_; std::map options_; };