commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r4524 - gnuradio/branches/developers/n4hy/ofdm/gnuradi


From: n4hy
Subject: [Commit-gnuradio] r4524 - gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/io
Date: Mon, 19 Feb 2007 15:52:04 -0700 (MST)

Author: n4hy
Date: 2007-02-19 15:52:03 -0700 (Mon, 19 Feb 2007)
New Revision: 4524

Added:
   gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/io/gr_frame.h
Log:
ofdm brought current with 4523

Added: 
gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/io/gr_frame.h
===================================================================
--- gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/io/gr_frame.h  
                        (rev 0)
+++ gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/io/gr_frame.h  
2007-02-19 22:52:03 UTC (rev 4524)
@@ -0,0 +1,41 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2005 Free Software Foundation, Inc.
+ * 
+ * This file is part of GNU Radio
+ * 
+ * GNU Radio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ * 
+ * GNU Radio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with GNU Radio; see the file COPYING.  If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef INCLUDED_GR_FRAME_H
+#define INCLUDED_GR_FRAME_H
+
+#include <vector>
+
+class gr_frame
+{
+ public:
+  gr_frame(unsigned int mtu)
+    : mtu(mtu), length(0)
+  { }
+
+  unsigned int mtu;
+  unsigned int length;
+  unsigned char data[];
+};
+
+#endif
+





reply via email to

[Prev in Thread] Current Thread [Next in Thread]