]> sigrok.org Git - pulseview.git/blobdiff - pv/devices/sessionfile.cpp
license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / devices / sessionfile.cpp
index e6920ff5e299a6a5b5e437b2768d3d020549f2e0..1e8c3acda039f3184e32e701972f16b7f5617bfd 100644 (file)
@@ -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 <http://www.gnu.org/licenses/>.
  */
 
 #include <libsigrokcxx/libsigrokcxx.hpp>
@@ -30,10 +29,12 @@ namespace devices {
 SessionFile::SessionFile(const std::shared_ptr<sigrok::Context> context,
        const std::string &file_name) :
        File(file_name),
-       context_(context) {
+       context_(context)
+{
 }
 
-void SessionFile::open() {
+void SessionFile::open()
+{
        if (session_)
                close();
 
@@ -41,7 +42,8 @@ void SessionFile::open() {
        device_ = session_->devices()[0];
 }
 
-void SessionFile::close() {
+void SessionFile::close()
+{
        if (session_)
                session_->remove_devices();
 }