[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r3497 - gnuradio/branches/developers/eb/mb/pmt/src/lib
From: |
eb |
Subject: |
[Commit-gnuradio] r3497 - gnuradio/branches/developers/eb/mb/pmt/src/lib |
Date: |
Thu, 7 Sep 2006 17:37:08 -0600 (MDT) |
Author: eb
Date: 2006-09-07 17:37:08 -0600 (Thu, 07 Sep 2006)
New Revision: 3497
Modified:
gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.cc
gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.h
gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt_io.cc
Log:
renamed pmt_unimplementedt to pmt_notimplemented
Modified: gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.cc
===================================================================
--- gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.cc 2006-09-07
23:12:50 UTC (rev 3496)
+++ gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.cc 2006-09-07
23:37:08 UTC (rev 3497)
@@ -51,7 +51,7 @@
{
}
-pmt_unimplemented::pmt_unimplemented(const char *msg, pmt_t obj)
+pmt_notimplemented::pmt_notimplemented(const char *msg, pmt_t obj)
: pmt_exception(msg, obj)
{
}
Modified: gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.h
===================================================================
--- gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.h 2006-09-07
23:12:50 UTC (rev 3496)
+++ gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt.h 2006-09-07
23:37:08 UTC (rev 3497)
@@ -72,10 +72,10 @@
pmt_out_of_range(const char *msg, pmt_t obj);
};
-class pmt_unimplemented : public pmt_exception
+class pmt_notimplemented : public pmt_exception
{
public:
- pmt_unimplemented(const char *msg, pmt_t obj);
+ pmt_notimplemented(const char *msg, pmt_t obj);
};
/*
Modified: gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt_io.cc
===================================================================
--- gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt_io.cc 2006-09-07
23:12:50 UTC (rev 3496)
+++ gnuradio/branches/developers/eb/mb/pmt/src/lib/pmt_io.cc 2006-09-07
23:37:08 UTC (rev 3497)
@@ -101,13 +101,13 @@
pmt_t
pmt_read(std::istream &port)
{
- throw pmt_unimplemented("unimplemented: pmt_read", PMT_NIL);
+ throw pmt_notimplemented("notimplemented: pmt_read", PMT_NIL);
}
void
pmt_serialize(pmt_t obj, std::ostream &sink)
{
- throw pmt_unimplemented("unimplemented: pmt_serialize", obj);
+ throw pmt_notimplemented("notimplemented: pmt_serialize", obj);
}
/*!
@@ -116,6 +116,6 @@
pmt_t
pmt_deserialize(std::istream &source)
{
- throw pmt_unimplemented("unimplemented: pmt_deserialize", PMT_NIL);
+ throw pmt_notimplemented("notimplemented: pmt_deserialize", PMT_NIL);
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r3497 - gnuradio/branches/developers/eb/mb/pmt/src/lib,
eb <=